https://github.com/cedws/unchecked-gcm
Modified version of AES-GCM implementation in crypto/cipher to allow decryption without/before authentication tag verification
https://github.com/cedws/unchecked-gcm
Last synced: about 1 year ago
JSON representation
Modified version of AES-GCM implementation in crypto/cipher to allow decryption without/before authentication tag verification
- Host: GitHub
- URL: https://github.com/cedws/unchecked-gcm
- Owner: cedws
- Created: 2024-10-24T20:43:34.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-24T20:45:19.000Z (over 1 year ago)
- Last Synced: 2025-04-06T03:59:58.199Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# unchecked-gcm
Modified version of AES-GCM implementation in `crypto/cipher` to allow
decryption without/before authentication tag verification. This is **insecure** and
exists only for compatibility with insecure systems.
An additional `Tag() [gcmTagSize]byte` method is added to enable arbitrary tag generation for the processed ciphertext at any point.
`Verify([]byte)` has also been added to enable verification of the tag after decryption.
## License
See header of `gcm.go` for license information.