Java Cryptography Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 10: Line 10:


{{External|https://docs.oracle.com/javase/8/docs/api/javax/crypto/Cipher.html}}
{{External|https://docs.oracle.com/javase/8/docs/api/javax/crypto/Cipher.html}}
==Cryptographic Algorithm==
Example: "AES"
==Feedback Mode==
Example: "CBC"
==Padding Scheme==
Example: "PKCS5Padding"

Revision as of 06:42, 24 November 2018

Internal

Java Cryptographic Extension (JCE) Framework

Cipher class is the core of JCE.

Cipher

https://docs.oracle.com/javase/8/docs/api/javax/crypto/Cipher.html

Cryptographic Algorithm

Example: "AES"

Feedback Mode

Example: "CBC"

Padding Scheme

Example: "PKCS5Padding"