douchou8935 2017-01-10 22:10
浏览 1302
已采纳

Golang:如何使用DES,CBC和PKCS7解密?

Currently trying to figure out why my decryption method is not working. I used DES, CBC, and PKCS7Padding to encrypt my string. My current code outputs panic: crypto/cipher: input not full blocks during decryption.

  • 写回答

1条回答 默认 最新

  • dsfdfd1211 2017-01-11 16:13
    关注

    Buddy it's work completely fine.

    package main
    
        import (
            "bytes"
            "crypto/des"
            "crypto/cipher"
            "fmt"
        )
    
        func DesEncryption(key, iv, plainText []byte) ([]byte, error) {
    
            block, err := des.NewCipher(key)
    
            if err != nil {
                return nil, err
            }
    
            blockSize := block.BlockSize()
            origData := PKCS5Padding(plainText, blockSize)
            blockMode := cipher.NewCBCEncrypter(block, iv)
            cryted := make([]byte, len(origData))
            blockMode.CryptBlocks(cryted, origData)
            return cryted, nil
        }
    
        func DesDecryption(key, iv, cipherText []byte) ([]byte, error) {
    
            block, err := des.NewCipher(key)
    
            if err != nil {
                return nil, err
            }
    
            blockMode := cipher.NewCBCDecrypter(block, iv)
            origData := make([]byte, len(cipherText))
            blockMode.CryptBlocks(origData, cipherText)
            origData = PKCS5UnPadding(origData)
            return origData, nil
        }
    
        func PKCS5Padding(src []byte, blockSize int) []byte {
            padding := blockSize - len(src)%blockSize
            padtext := bytes.Repeat([]byte{byte(padding)}, padding)
            return append(src, padtext...)
        }
    
        func PKCS5UnPadding(src []byte) []byte {
            length := len(src)
            unpadding := int(src[length-1])
            return src[:(length - unpadding)]
        }
    
    
        func main() {
            originalText := "sysys"
            fmt.Println(originalText)
            mytext := []byte(originalText)
    
            key := []byte{0xBC, 0xBC, 0xBC, 0xBC, 0xBC, 0xBC, 0xBC, 0xBC }
            iv := []byte{0xBC, 0xBC, 0xBC, 0xBC, 0xBC, 0xBC, 0xBC, 0xBC }
    
    
            cryptoText,_ := DesEncryption(key, iv, mytext)
            fmt.Println(string(cryptoText))
            decryptedText,_ := DesDecryption(key, iv, cryptoText)
            fmt.Println(string(decryptedText))
    
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试