Go 학습--암호학

910 단어 Goaesgolang
package main

import (
	"crypto/aes"
	"fmt"
	"strings"
)

func main() {
	//////////////------AES  ------//////////////
	//   16/24/32bytes  AES-128/AES-192/AES-256.
	key := []byte{
		1, 2, 3, 4, 5, 6, 7, 8,
		9, 0, 1, 2, 3, 4, 5, 6,
		7, 8, 9, 0, 1, 2, 3, 4,
		5, 6, 7, 8, 9, 0, 1, 2,
	}
	fmt.Println("        :", aes.BlockSize)
	//  
	cleartext := make([]byte, aes.BlockSize)
	strings.NewReader("I'm a cleartext!").Read(cleartext)
	//  
	ciphertext := make([]byte, aes.BlockSize)
	cip, _ := aes.NewCipher(key)
	//  
	cip.Encrypt(ciphertext, cleartext)
	fmt.Println("  :", cleartext)
	fmt.Println("  :", ciphertext)
	//  
	cip.Decrypt(cleartext, ciphertext)
	fmt.Println("  :", ciphertext)
	fmt.Println("  :", cleartext)
	fmt.Printf("  : %s", cleartext)
	//////////////------AES  ------//////////////
}

좋은 웹페이지 즐겨찾기