Advertisement
Guest User

RSADERP

a guest
Dec 16th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. local component = require("component")
  2. local cipher = component.advanced_cipher
  3. local keygen = cipher.createRandomKeySet() --replace with createKeySet(prime1,prime2)
  4.  
  5. while not keygen.finished() do
  6.   os.sleep(0.5) --wait some time to let the keygen finish, may be less or more than 0.5
  7. end
  8.  
  9. local pubKey, privKey = keygen.getKeys()
  10.  
  11. --There you are, you have two keys.
  12.  
  13. local msg = "I am a Pastryfork!"
  14. print(msg)
  15. print("-----")
  16. local cpt = cipher.encrypt(msg, pubKey)
  17. print(cpt)
  18. print("-----")
  19. local nw = cipher.decrypt(cpt, privKey)
  20. print(nw)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement