https://github.com/abdeltwabmf/aes-ciphers
AES block cipher modes with the user interface.
https://github.com/abdeltwabmf/aes-ciphers
aes aes-encryption block-ciphers cbc-mode ctr-mode decryption ecb ecryption
Last synced: 8 months ago
JSON representation
AES block cipher modes with the user interface.
- Host: GitHub
- URL: https://github.com/abdeltwabmf/aes-ciphers
- Owner: AbdeltwabMF
- License: mit
- Created: 2021-12-23T15:56:10.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-31T13:19:08.000Z (over 4 years ago)
- Last Synced: 2025-04-14T01:31:51.393Z (about 1 year ago)
- Topics: aes, aes-encryption, block-ciphers, cbc-mode, ctr-mode, decryption, ecb, ecryption
- Language: Java
- Homepage:
- Size: 40.8 MB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AES Ciphers
An implementation of the common AES block cipher modes of operations (ECB, CBC, CTR), with user interface.
It allows you to encrypt and decrypt files visually.
## Features
- Supports all AES key sizes
- Supports all AES common modes
## Notes
- All keys may be 128 bits (16 bytes), 192 bits (24 bytes) or 256 bits (32 bytes) long.
- Key might be a (8-char, 12-char, or 16-char) string.
- Key might be a (32-char, 48-char, or 64-char) HEX.
- There are many modes of operations, each with various pros and cons. In general though, the CBC and CTR modes are recommended. The ECB is NOT recommended, and is included primarily for completeness.
## Snapshots

## Usage

## License
Licensed under the [MIT License](/LICENSE)