Cryptography Tutorials - Herong's Tutorial Examples - v5.42, by Herong Yang
mcrypt Encryption Functions
This section describes mcrypt encryption functions and 4 DES ciphers (operation modes) - 8-byte ECB, 8-byte CBC, 1-byte CFB, and 1-byte OFB ciphers.
"mcrypt" encryption extension offers the following main functions to perform an encryption operation:
To specify the DES encryption algorithm for the mcrypt_module_open() function, you need to use the predefined constant: MCRYPT_DES.
To specify a DES operation mode for the mcrypt_module_open() function, you also need to use one of 4 predefined constants representing 4 4 DES operation modes supported in mcrypt:
For example, if you want to create cipher resource handle to use DES 1-byte CFB operation mode, the function call should be: mcrypt_module_open(MCRYPT_DES, '', MCRYPT_MODE_CFB, '').
Table of Contents
Introduction to AES (Advanced Encryption Standard)
DES Algorithm - Illustrated with Java Programs
DES Algorithm Java Implementation
DES Algorithm - Java Implementation in JDK JCE
DES Encryption Operation Modes
►PHP Implementation of DES - mcrypt
mcrypt DES Encryption Testing Program
Blowfish - 8-Byte Block Cipher
Secret Key Generation and Management
Cipher - Secret Key Encryption and Decryption
RSA Implementation using java.math.BigInteger Class
Introduction of DSA (Digital Signature Algorithm)
Java Default Implementation of DSA
Private key and Public Key Pair Generation
PKCS#8/X.509 Private/Public Encoding Standards
Cipher - Public Key Encryption and Decryption
OpenSSL Introduction and Installation
OpenSSL Generating and Managing RSA Keys
OpenSSL Generating and Signing CSR
OpenSSL Validating Certificate Path
"keytool" and "keystore" from JDK
"OpenSSL" Signing CSR Generated by "keytool"
Migrating Keys from "keystore" to "OpenSSL" Key Files
Certificate X.509 Standard and DER/PEM Formats
Migrating Keys from "OpenSSL" Key Files to "keystore"