cbc

package
v1.0.2 Latest Latest
Warning

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

Go to latest
Published: Aug 1, 2024 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Decrypt

func Decrypt(key, ciphertext []byte) ([]byte, error)

Decrypt 使用 AES-CBC 模式和给定的密钥对密文进行解密 参数:

  • key: []byte 用于解密的密钥。
  • ciphertext: []byte 需要解密的密文数据,包括初始向量和密文。

返回值:

  • []byte: 解密后的明文数据。
  • error: 如果发生错误,返回错误信息。

func Encrypt

func Encrypt(key, plaintext []byte) ([]byte, error)

Encrypt 使用 AES-CBC 模式和给定的密钥对明文进行加密 参数:

  • key: []byte 用于加密的密钥。
  • plaintext: []byte 需要加密的明文数据。

返回值:

  • []byte: 加密后的数据,包括初始向量和密文。
  • error: 如果发生错误,返回错误信息。

Types

This section is empty.

Jump to

Keyboard shortcuts

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