s/Circuit Python/CircuitPython/g

Some comments and messages used the non-standard spelling
This commit is contained in:
Artyom Skrobov 2021-05-06 16:22:35 +03:00
parent 03a4f85556
commit 908d83d1f2
19 changed files with 19 additions and 19 deletions

View File

@ -28,7 +28,7 @@
//| from binascii import hexlify
//|
//| key = b'Sixteen byte key'
//| inp = b'Circuit Python!!' # Note: 16-bytes long
//| inp = b'CircuitPython!!!' # Note: 16-bytes long
//| outp = bytearray(len(inp))
//| cipher = aesio.AES(key, aesio.mode.MODE_ECB)
//| cipher.encrypt_into(inp, outp)