下载
chariot plugin download chariot/aes:0.1.2
描述
AES加密
动作
- 密文将以base64的形式输出,有必要时密钥、偏移量、明文会被填充
plugin_spec_version: v2
extension: plugin
name: aes
title: AES加密
description: AES加密
version: 0.1.2
vendor: chariot
support: community
actions:
cbc:
title: CBC加密模式
description: 密文将以base64的形式输出,有必要时密钥、偏移量、明文会被填充
input:
key:
title:
en: Key
zh-CN: 密钥
type: string
required: true
iv:
title:
en: IV (length <= 16)
zh-CN: 偏移量(不要大于16位)
type: string
required: true
text:
title:
en: Text to Encode
zh-CN: 明文
type: string
required: true
padding:
title:
en: Padding Mode
zh-CN: 填充模式
type: string
required: true
default: ZeroPadding
enum:
- ZeroPadding
- PKCS5Padding
- PKCS7Padding
- NoPadding
output:
encode:
title:
en: Ciphertext
zh-CN: 密文
type: string