encryption

package
v0.0.0-...-8e399c3 Latest Latest
Warning

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

Go to latest
Published: Jan 13, 2022 License: MIT Imports: 5 Imported by: 0

Documentation

Overview

Package encryption 对称加密 AES算法 + CTR分组模式 key 长度要求: 16 字节 - AES-128 24 字节 - AES-192 32 字节 - AES-256 加密后的密文([]byte)直接使用 string(密文) 会包含乱码 需要使用 hex 转 16 进制 hex.EncodeToString(密文) ,返回 的字符串可以以 varchar 类型直接存 mysql 数据库,取出后使 用 hex.DecodeString(16进制的密文字符) 得到原始密文

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AesCtrDecrypt

func AesCtrDecrypt(encryptData []byte) ([]byte, error)

AesCtrDecrypt 输入密文([]byte),得到明文

func AesCtrEncrypt

func AesCtrEncrypt(plainText []byte) ([]byte, error)

AesCtrEncrypt 输入明文,输出密文([]byte)

func AesCtrEncryptToString

func AesCtrEncryptToString(plainText []byte) (string, error)

AesCtrEncryptToString 输入明文,输出密文(string)

func AesCtrStringToDecrypt

func AesCtrStringToDecrypt(stringEncryptData string) ([]byte, error)

AesCtrStringToDecrypt 输入密文(string),得到明文

func EncryptDataToString

func EncryptDataToString(encryptData []byte) string

func Setup

func Setup()

func StringToEncryptData

func StringToEncryptData(stringEncryptData string) ([]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