diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2019-03-24 14:17:25 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2019-03-24 14:17:25 +0100 |
| commit | 1b6e1eb38927633292e934ac314b10e7acc28e3d (patch) | |
| tree | 6e1570adad2c1efac0dc60652644a1d90d04f9ac /src/add_python/lilliput/constants.py | |
| parent | fad848887249da22a83e4f35dab3d80f8c590d4d (diff) | |
| download | lilliput-ae-implem-1b6e1eb38927633292e934ac314b10e7acc28e3d.tar.xz | |
[implem-python] Conformité PEP8
Surtout la capitalisation des noms de fonction.
Retrait des lignes de '#' ; si il y a des séparations à faire, autant
ajouter des modules.
Correction de _MessageTweak.BLOCK en passant.
Diffstat (limited to 'src/add_python/lilliput/constants.py')
| -rw-r--r-- | src/add_python/lilliput/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/add_python/lilliput/constants.py b/src/add_python/lilliput/constants.py index 0c9b89f..5e07e96 100644 --- a/src/add_python/lilliput/constants.py +++ b/src/add_python/lilliput/constants.py @@ -4,7 +4,7 @@ NONCE_BYTES = 15 TAG_BYTES = 16 -Sbox = [ +SBOX = [ 0x20, 0x00, 0xb2, 0x85, 0x3b, 0x35, 0xa6, 0xa4, 0x30, 0xe4, 0x6a, 0x2c, 0xff, 0x59, 0xe2, 0x0e, 0xf8, 0x1e, 0x7a, 0x80, 0x15, 0xbd, 0x3e, 0xb1, |
