Simple test¶
Ensure your device works with this simple test.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
# SPDX-License-Identifier: MIT
# Adafruit_CircuitPython_RSA Encryption/Decryption
import adafruit_rsa
# Create a keypair
print("Generating keypair...")
(public_key, private_key) = adafruit_rsa.newkeys(512)
# Message to send
message = "hello blinka"
# Encode the string as bytes (Adafruit_RSA only operates on bytes!)
message = message.encode("utf-8")
# Encrypt the message using the public key
print("Encrypting message...")
encrypted_message = adafruit_rsa.encrypt(message, public_key)
# Decrypt the encrypted message using a private key
print("Decrypting message...")
decrypted_message = adafruit_rsa.decrypt(encrypted_message, private_key)
# Print out the decrypted message
print("Decrypted Message: ", decrypted_message.decode("utf-8"))
|