rsthn/rose-ext-angela

Angela 加密扩展

安装: 12

依赖项: 0

建议者: 0

安全: 0

星标: 1

关注者: 1

分支: 0

开放问题: 0

类型:rose-extension

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

This package is auto-updated.

Last update: 2024-09-14 08:02:52 UTC


README

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

使用 Angela 加密指定的缓冲区。

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

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

使用 Angela 解密指定的密文。

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