Advertisement
Guest User

Untitled

a guest
Sep 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. EncA(FileA)
  2. EncB(FileB)
  3. EncC(FileC)
  4.  
  5. PubX/PrivX
  6. PubY/PrivY
  7. PubZ/PrivZ
  8.  
  9. EncA is AES
  10. PubX/PrivX is RSA
  11. EncA(FileA) = aesEncrypt(aesKeyA, FileA)
  12. MagicKey(PubX, aesKeyA) = rsaEncrypt(PubX, aesKeyA)
  13.  
  14. 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