我正在为自己做一个有趣的副项目。一个 golang 服务器和一个 python 客户端。我希望传输的数据被加密,但似乎无法让这两种加密方案协同工作。我是加密方面的新手,所以请像在和蹒跚学步的孩子交谈一样解释。
这是我的 golang 加密函数:
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"errors"
"io"
"fmt"
)
func Encrypt(key, text []byte) (ciphertext []byte, err error) {
var block cipher.Block
if block, err = aes.NewCipher(key); err != nil {
return nil, err
}
ciphertext = make([]byte, aes.BlockSize+len(string(text)))
iv := ciphertext[:aes.BlockSize]
fmt.Println(aes.BlockSize)
if _, err = io.ReadFull(rand.Reader, iv); err != nil {
return
}
cfb := cipher.NewCFBEncrypter(block, iv)
cfb.XORKeyStream(ciphertext[aes.BlockSize:], text)
return
}
func Decrypt(key, ciphertext []byte) (plaintext []byte, err error) {
var block cipher.Block
if block, err = aes.NewCipher(key); err != nil {
return
}
if len(ciphertext) < aes.BlockSize {
err = errors.New("ciphertext too short")
return
}
iv := ciphertext[:aes.BlockSize]
ciphertext = ciphertext[aes.BlockSize:]
cfb := cipher.NewCFBDecrypter(block, iv)
cfb.XORKeyStream(ciphertext, ciphertext)
plaintext = ciphertext
return
}
这是我的 Python 实现:
class AESCipher:
def __init__( self, key ):
self.key = key
print "INIT KEY" + hexlify(self.key)
def encrypt( self, raw ):
print "RAW STRING: " + hexlify(raw)
iv = Random.new().read( AES.block_size )
cipher = AES.new( self.key, AES.MODE_CFB, iv )
r = ( iv + cipher.encrypt( raw ) )
print "ECRYPTED STRING: " + hexlify(r)
return r
def decrypt( self, enc ):
enc = (enc)
iv = enc[:16]
cipher = AES.new(self.key, AES.MODE_CFB, iv)
x=(cipher.decrypt( enc ))
print "DECRYPTED STRING: " + hexlify(x)
return x
我也无法弄清楚我的 python 函数的输出。我的 Go 例程运行良好。但我希望能够在 Go 中加密,在 python 中解密,反之亦然。
如您所见,消息已解密,但最终出现在字符串的末尾?
海绵宝宝撒
幕布斯6054654
PIPIONE
随时随地看视频慕课网APP
相关分类