rsthn/rose-ext-angela

Angela Encryption Extension

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:rose-extension

v3.0.2 2024-05-14 07:19 UTC

This package is auto-updated.

Last update: 2024-05-14 07:19:47 UTC


README

(eax:encrypt <key> <plain-text>)

Encrypts the specified buffer using Angela.

(eax:encrypt 'hello_world' 'my_plain_text')
; (bytes)

(eax:decrypt <key> <cipher-text>)

Decrypts the specified cipher using Angela.

(eax:decrypt 'hello_world' (eax:encrypt 'hello_world' 'my_plain_text'))
; my_plain_text