Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. EncA is AES
  2. PubX/PrivX is RSA
  3. EncA(FileA) = aesEncrypt(aesKeyA, FileA)
  4. MagicKey(PubX, aesKeyA) = rsaEncrypt(PubX, aesKeyA)
  5.  
  6. decrypt(PrivX, MagicKey(PubX, aesKeyA), Enc(FileA)) = aesDecrypt(rsaDecrypt(PrivX, MagicKey(PubX, aesKeyA)), EncA(FileA))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement