rsthn/rose-ext-angela

Angela Encryption Extension

Maintainers

Package info

github.com/rsthn/rose-ext-angela

Type:rose-extension

pkg:composer/rsthn/rose-ext-angela

Statistics

Installs: 30

Dependents: 1

Suggesters: 0

Stars: 1

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-02-14 10:48:01 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