Merge pull request #4716 from tyomitch/main

s/Circuit Python/CircuitPython/g
This commit is contained in:
Jeff Epler 2021-05-08 08:47:29 -05:00 committed by GitHub
commit 5e06c91244
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)