selvalives

Untitled

Aug 26th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. what is cryptography ?
  2. -change the readable text to non-readable text
  3. -classes available in dotnet to implement cryptography
  4. -encryption and decryption uses a key to perform the operation
  5.  
  6.  
  7. -symmetric encryption
  8. -one key is used for both encryption and decryption
  9. -fast
  10. -not really safe since both party has to exchange the keys safely
  11. -defend symmetric encryption
  12. -use rijndeal algorithm
  13. -use CBC chiper mode instead of ECB
  14. -do not set zeros padding
  15. -increase secret key lenght to 256
  16. -store is safely-options-windows registry,database,app config files,localfile proctected with ACL
  17. -asymmetric encryption
  18. -all together 3 keys available
  19. -i take your public key and send you message, you take and decrypt with your private key-vice versa
  20. -defend asymmetric encryption
  21. -increase keysize to atleast 2048
Add Comment
Please, Sign In to add comment