aes

package
v1.5.93 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 14, 2023 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CBCDecrypt

func CBCDecrypt(secretData, key, iv []byte) ([]byte, error)

AES-CBC 解密数据

func CBCEncrypt

func CBCEncrypt(originData, key, iv []byte) ([]byte, error)

AES-CBC 加密数据

func ECBDecrypt

func ECBDecrypt(secretData, key []byte) ([]byte, error)

AES-ECB 解密数据

func ECBEncrypt

func ECBEncrypt(originData, key []byte) ([]byte, error)

AES-ECB 加密数据

func GCMDecrypt

func GCMDecrypt(cipherText, nonce, additional, key []byte) ([]byte, error)

AES-GCM 解密数据

func GCMEncrypt

func GCMEncrypt(originText, additional, key []byte) (nonce []byte, cipherText []byte, err error)

AES-GCM 加密数据

func PKCS5Padding

func PKCS5Padding(ciphertext []byte, blockSize int) []byte

加密填充模式(添加补全码) PKCS5Padding 加密时,如果加密bytes的length不是blockSize的整数倍,需要在最后面添加填充byte

func PKCS5UnPadding

func PKCS5UnPadding(origData []byte) []byte

解密填充模式(去除补全码) PKCS5UnPadding 解密时,需要在最后面去掉加密时添加的填充byte

func PKCS7Padding

func PKCS7Padding(ciphertext []byte, blockSize int) []byte

加密填充模式(添加补全码) PKCS5Padding 加密时,如果加密bytes的length不是blockSize的整数倍,需要在最后面添加填充byte

func PKCS7UnPadding

func PKCS7UnPadding(origData []byte) (bs []byte)

解密填充模式(去除补全码) PKCS7UnPadding 解密时,需要在最后面去掉加密时添加的填充byte

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL