Go 中的AES ECB 加密
AES ECB 模式加密,其中每個明文區塊都是獨立加密的,是一種簡單但可能不安全的加密方法。在Go 中,您可以使用以下程式碼執行AES ECB 解密:
<code class="go">package main import ( "crypto/aes" "fmt" ) func decryptAes128Ecb(data, key []byte) []byte { cipher, _ := aes.NewCipher(key) decrypted := make([]byte, len(data)) size := 16 for bs, be := 0, size; bs < len(data); bs, be = bs+size, be+size { cipher.Decrypt(decrypted[bs:be], data[bs:be]) } return decrypted } func main() { key := []byte("YourEncryptionKey") data := []byte("DataToBeEncrypted") ciphertext := encryptAes128Ecb(data, key) fmt.Println("Ciphertext:", ciphertext) plaintext := decryptAes128Ecb(ciphertext, key) fmt.Println("Plaintext:", plaintext) }</code>
請注意,ECB 模式對於實際應用而言並不被認為是安全的,因為它缺乏擴散並且容易受到「電子密碼本”等攻擊攻擊。因此,一般建議使用CBC等較安全的模式。
以上是如何在 Go 中解密 AES ECB 模式加密?的詳細內容。更多資訊請關注PHP中文網其他相關文章!