blob: c87c03f563207478534d44808f152ef3e84bcd26 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from unittest import TestCase
from pyecsca.ec.naf import naf, wnaf
class NafTests(TestCase):
def test_nafs(self):
i = 0b1100110101001101011011
self.assertListEqual(naf(i), wnaf(i, 2))
|