ecb_test.go 689 B

1234567891011121314151617181920212223242526272829
  1. package cipher
  2. import (
  3. iaes "crypto/aes"
  4. "testing"
  5. "go-common/app/interface/main/report-click/service/crypto/padding"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestECB(t *testing.T) {
  9. var (
  10. aesKey = "903ef9925be1300f843b41df2ca55410"
  11. bs = []byte("this is test massage ")
  12. )
  13. Convey("cipher test ", t, func() {
  14. var p = padding.PKCS5
  15. bs = p.Padding(bs, iaes.BlockSize)
  16. b, _ := iaes.NewCipher([]byte(aesKey))
  17. ecbe := NewECBEncrypter(b)
  18. encryptText := make([]byte, len(bs))
  19. ecbe.CryptBlocks(encryptText, bs)
  20. ecbd := NewECBDecrypter(b)
  21. decryptText := make([]byte, len(bs))
  22. ecbd.CryptBlocks(decryptText, bs)
  23. p.Unpadding(bs, iaes.BlockSize)
  24. })
  25. }