教程集 www.jiaochengji.com
教程集 >  Golang编程  >  golang教程  >  正文 go语言对称加密算法

go语言对称加密算法

发布时间:2023-02-03   编辑:jiaochengji.com
教程集为您提供go语言对称加密算法等资源,欢迎您收藏本站,我们将为您提供最新的go语言对称加密算法资源
package main

import (
    "bytes"
    "crypto/aes"
    "crypto/cipher"
    "crypto/des"
)

// des的CBC加密
// 编写填充函数, 如果最后一个分组字节数不够, 填充
// ......字节数刚好合适, 添加一个新的分组
// 填充个的字节的值 == 缺少的字节的数
func paddingLastGroup(plainText []byte, bloclSize int) []byte {
    // 1. 求出最后一个组中剩余的字节数 28 % 8 = 3...4  32 % 8 = 4 ...0
    padNum := bloclSize - len(plainText) % bloclSize
    // 2. 创建新的切片, 长度 == padNum, 每个字节值 byte(padNum)
    char := []byte{byte(padNum)} // 长度1,
    // 切片创建, 并初始化
    newPlain := bytes.Repeat(char, padNum)
    // 3. newPlain数组追加到原始明文的后边
    newText := append(plainText, newPlain...)
    return newText
}

// 去掉填充的数据
func unPaddingLastGrooup(plainText []byte) []byte {
    // 1. 拿去切片中的最后一个字节
    length := len(plainText)
    lastChar := plainText[length -1]    //
    number := int(lastChar)    // 尾部填充的字节个数
    return plainText[:length - number]
}

// des加密
func desEncrypt(plainText, key []byte) []byte {
    // 1. 建一个底层使用des的密码接口
    block, err := des.NewCipher(key)
    if err != nil {
        panic(err)
    }
    // 2. 明文填充
    newText := paddingLastGroup(plainText, block.BlockSize())
    // 3. 创建一个使用cbc分组接口
    iv := []byte("12345678")
    blockMode := cipher.NewCBCEncrypter(block, iv)
    // 4. 加密
    cipherText := make([]byte, len(newText))
    blockMode.CryptBlocks(cipherText, newText)
    // blockMode.CryptBlocks(newText, newText)
    return cipherText
}

// des解密
func desDecrypt(cipherText, key []byte) []byte {
    // 1. 建一个底层使用des的密码接口
    block, err := des.NewCipher(key)
    if err != nil {
        panic(err)
    }
    // 2. 创建一个使用cbc模式解密的接口
    iv := []byte("12345678")
    blockMode := cipher.NewCBCDecrypter(block, iv)
    // 3. 解密
    blockMode.CryptBlocks(cipherText, cipherText)
    // 4. cipherText现在存储的是明文, 需要删除加密时候填充的尾部数据
    plainText := unPaddingLastGrooup(cipherText)
    return plainText
}

// aes加密, 分组模式ctr
func aesEncrypt(plainText, key []byte) []byte {
    // 1. 建一个底层使用aes的密码接口
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    // 2. 创建一个使用ctr分组接口
    iv := []byte("12345678abcdefgh")
    stream := cipher.NewCTR(block, iv)

    // 4. 加密
    cipherText := make([]byte, len(plainText))
    stream.XORKeyStream(cipherText, plainText)

    return cipherText
}

// des解密
func aesDecrypt(cipherText, key []byte) []byte {
    // 1. 建一个底层使用des的密码接口
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    // 2. 创建一个使用ctr模式解密的接口
    iv := []byte("12345678abcdefgh")
    stream := cipher.NewCTR(block, iv)
    // 3. 解密
    stream.XORKeyStream(cipherText, cipherText)

    return cipherText
}
package main

import "fmt"


// 测试文件
func main() {
    fmt.Println("des 加解密")
    key := []byte("1234abdd")
    src := []byte("特点: 密文没有规律,  明文分组是和一个数据流进行的按位异或操作, 最终生成了密文")
    cipherText := desEncrypt(src, key)
    plainText := desDecrypt(cipherText, key)
    fmt.Printf("解密之后的数据: %s\n", string(plainText))

    fmt.Println("aes 加解密 ctr模式 ... ")
    key1 := []byte("1234abdd12345678")
    cipherText = aesEncrypt(src, key1)
    plainText = aesDecrypt(cipherText, key1)
    fmt.Printf("解密之后的数据: %s\n", string(plainText))
}
到此这篇关于“go语言对称加密算法”的文章就介绍到这了,更多文章或继续浏览下面的相关文章,希望大家以后多多支持JQ教程网!

您可能感兴趣的文章:
Go语言学习3----Go语言特色
Go语言发展历史、核心、特性及学习路线
初识 Go 语言
php和go哪个适合新人
Go 语言十年而立,Go2 蓄势待发
Go从入门到精通系列视频之go编程语言密码学哈希算法
Go语言的主要特性和发展影响
C#做的一个加密/解密的类
go 语言学习历程
[GO语言基础] 一.为什么我要学习Golang以及GO语言入门普及

[关闭]
~ ~