zoukankan      html  css  js  c++  java
  • DES加密ECB(模式) golang

    Java默认DES算法使用DES/ECB/PKCS5Padding,而golang认为这种方式是不安全的,所以故意没有提供这种加密方式,那如果我们还是要用到怎么办?下面贴上golang版的DES ECB加密解密代码(默认对密文做了base64处理)。

    package main
    
    import (
        log "ad-service/alog"
        "bytes"
        "crypto/des"
        "encoding/base64"
    )
    
    func EntryptDesECB(data, key []byte) string {
        if len(key) > 8 {
            key = key[:8]
        }
        block, err := des.NewCipher(key)
        if err != nil {
            log.Errorf("EntryptDesECB newCipher error[%v]", err)
            return ""
        }
        bs := block.BlockSize()
        data = PKCS5Padding(data, bs)
        if len(data)%bs != 0 {
            log.Error("EntryptDesECB Need a multiple of the blocksize")
            return ""
        }
        out := make([]byte, len(data))
        dst := out
        for len(data) > 0 {
            block.Encrypt(dst, data[:bs])
            data = data[bs:]
            dst = dst[bs:]
        }
        return base64.StdEncoding.EncodeToString(out)
    }
    func DecryptDESECB(d, key []byte) string {
        data, err := base64.StdEncoding.DecodeString(d)
        if err != nil {
            log.Errorf("DecryptDES Decode base64 error[%v]", err)
            return ""
        }
        if len(key) > 8 {
            key = key[:8]
        }
        block, err := des.NewCipher(key)
        if err != nil {
            log.Errorf("DecryptDES NewCipher error[%v]", err)
            return ""
        }
        bs := block.BlockSize()
        if len(data)%bs != 0 {
            log.Error("DecryptDES crypto/cipher: input not full blocks")
            return ""
        }
        out := make([]byte, len(data))
        dst := out
        for len(data) > 0 {
            block.Decrypt(dst, data[:bs])
            data = data[bs:]
            dst = dst[bs:]
        }
        out = PKCS5UnPadding(out)
        return string(out)
    }
    
    func PKCS5Padding(ciphertext []byte, blockSize int) []byte {
        padding := blockSize - len(ciphertext)%blockSize
        padtext := bytes.Repeat([]byte{byte(padding)}, padding)
        return append(ciphertext, padtext...)
    }
    
    func PKCS5UnPadding(origData []byte) []byte {
        length := len(origData)
        unpadding := int(origData[length-1])
        return origData[:(length - unpadding)]
    }
    View Code
  • 相关阅读:
    SpringBoot Actuator
    Mysql中实现row_number
    .添加索引和类型,同时设定edgengram分词和charsplit分词
    mysql临时禁用触发器
    centos6.7下安装mvn 、安装elasticsearch下ik分词
    ElasticSearch 自定义排序处理
    ElasticSearch返回不同的type的序列化
    Elasticsearch判断多列存在、bool条件组合查询示例
    C#多线程环境下调用 HttpWebRequest 并发连接限制
    centos6.7安装Redis
  • 原文地址:https://www.cnblogs.com/xiaxiaosheng/p/8818456.html
Copyright © 2011-2022 走看看