https://github.com/miwr/aesige
AES IGE pure C# implementation
https://github.com/miwr/aesige
aes decrypt encrypt ige
Last synced: about 1 year ago
JSON representation
AES IGE pure C# implementation
- Host: GitHub
- URL: https://github.com/miwr/aesige
- Owner: mIwr
- License: apache-2.0
- Created: 2023-08-09T19:08:14.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-13T09:01:21.000Z (almost 2 years ago)
- Last Synced: 2025-05-09T00:11:52.985Z (about 1 year ago)
- Topics: aes, decrypt, encrypt, ige
- Language: C#
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# AES IGE (Infinite Garble Extension)
[](http://www.nuget.org/packages/AesIge)
## General
Infinite Garble Extension (IGE) is a block cipher mode. It has the property that errors are propagated forward indefinitely.
Bi-directional IGE (biIGE) propogates errors in both directions: that is, any change to the ciphertext will cause all of the plaintext to be corrupted.
IGE and biIGE have some leeway in their definitions admitting several possible implementations.
This paper documents the way I chose to implement them in OpenSSL, and also provides test vectors.
It also points out some implementation details that may not be obvious from the original papers. [More info](http://www.links.org/files/openssl-ige.pdf)