Versions in this module Expand all Collapse all v0 v0.0.25 Feb 23, 2023 Changes in this version + func AesCBCDecrypt(ciphertext, key, iv []byte) ([]byte, error) + func AesCBCEncrypt(plaintext, key, iv []byte) ([]byte, error) + func CBCDecrypt(block cipher.Block, ciphertext, iv []byte) ([]byte, error) + func CBCEncrypt(block cipher.Block, plaintext, iv []byte) ([]byte, error) + func DesCBCDecrypt(ciphertext, key, iv []byte) ([]byte, error) + func DesCBCEncrypt(plaintext, key, iv []byte) ([]byte, error) + func PKCS5Padding(src []byte, blockSize int) []byte + func PKCS5UnPadding(src []byte) []byte + func PKCS7Padding(src []byte, blockSize int) []byte + func PKCS7UnPadding(src []byte) []byte