1.2.2
- ShuffleCrypt added
- Various GUI bugs fixed
- Command line version help now uses GNU standards.
1.2.1
1.2
- Multiple hashing algorithms can be used at once:
| Name | Command Line ID | File ID |
| SHA1 | a | 0x01 |
| SHA224 | b | 0x02 |
| SHA256 | c | 0x04 |
| SHA384 | d | 0x08 |
| SHA512 | e | 0x10 |
| MD5 | f | 0x20 |
| CubeHash | g | 0x40 |
| WHIRLPOOL | h | 0x80 |
| Offset | Length | Description |
| 0 | 3 | Literal hex bytes: A7 09 C3 |
| 3 | 1 | Encryption format revision ID (02) |
| 4 | 1 | Null byte (00) |
| 5 | 1 | Length of random data (bytes) 00 stands for 1 byte, FF is 256 bytes. |
| 6 | 1-256 | Random data used as a salt |
| 7-262 | 1 | Bitwise field of algorithms used. See above for a list. |
| 8-263 | Any | Encrypted data |
1.1.2
- Complete rewrite
- Secure random number generator for Windows - Compile with -DWINDOWS (make CFLAGS="-DWINDOWS")
1.1.1
- Random number generator strength improved
1.1
- Command line arguments changed - Everything shifts over one space to the right, c means compatibility (pre-1.1) mode, h gives help, e encrypts, and d decrypts.
- File format changed. The new format is as follows:
Section sign
Horizontal tab
A with tilde
Encryption format ID (1.1 is 0x01)
Null byte
20 bytes of random data
Encrypted data
1.0.1