https://github.com/kkazuo/authenticated-encryption
A implementation of Authenticated Encryption of Lisp
https://github.com/kkazuo/authenticated-encryption
authenticated common-lisp encryption lisp
Last synced: 3 months ago
JSON representation
A implementation of Authenticated Encryption of Lisp
- Host: GitHub
- URL: https://github.com/kkazuo/authenticated-encryption
- Owner: kkazuo
- License: mit
- Created: 2018-09-04T15:44:54.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-05T14:29:32.000Z (almost 7 years ago)
- Last Synced: 2025-01-16T03:49:40.039Z (5 months ago)
- Topics: authenticated, common-lisp, encryption, lisp
- Language: Common Lisp
- Size: 6.84 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
Awesome Lists containing this project
README
# Authenticated-Encryption
A implementation of Authenticated Encryption
## Usage
Encrypt
```
(aead::authenticated-encrypt plain-text-as-bytes :secret secret-bytes)
;=> encrypted-bytes
```Decrypt
```
(aead::authenticated-decrypt encrypted-bytes :secret secret-bytes)
;=> plain-text-as-bytes
; or raise authenticated-decrypt-error condition
```## Installation
## Cite
* https://en.wikipedia.org/wiki/Authenticated_encryption
* https://csrc.nist.gov/csrc/media/projects/block-cipher-techniques/documents/bcm/proposed-modes/eax/eax-spec.pdf