using glide

This commit is contained in:
fatedier
2017-11-01 16:21:57 +08:00
parent ad858a0d32
commit 0f1005ff61
1073 changed files with 293160 additions and 171 deletions

67
vendor/github.com/tjfoc/gmsm/sm4/sm4_test.go generated vendored Normal file
View File

@@ -0,0 +1,67 @@
/*
Copyright Suzhou Tongji Fintech Research Institute 2017 All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package sm4
import (
"fmt"
"log"
"testing"
)
func TestSM4(t *testing.T) {
key := []byte("1234567890abcdef")
fmt.Printf("key = %v\n", key)
data := []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10}
WriteKeyToPem("key.pem", key, nil)
key, err := ReadKeyFromPem("key.pem", nil)
fmt.Printf("key = %v\n", key)
if err != nil {
log.Fatal(err)
}
fmt.Printf("data = %x\n", data)
c, err := NewCipher(key)
if err != nil {
log.Fatal(err)
}
d0 := make([]byte, 16)
c.Encrypt(d0, data)
fmt.Printf("d0 = %x\n", d0)
d1 := make([]byte, 16)
c.Decrypt(d1, d0)
fmt.Printf("d1 = %x\n", d1)
}
func BenchmarkSM4(t *testing.B) {
t.ReportAllocs()
key := []byte("1234567890abcdef")
data := []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10}
WriteKeyToPem("key.pem", key, nil)
key, err := ReadKeyFromPem("key.pem", nil)
if err != nil {
log.Fatal(err)
}
c, err := NewCipher(key)
if err != nil {
log.Fatal(err)
}
for i := 0; i < t.N; i++ {
d0 := make([]byte, 16)
c.Encrypt(d0, data)
d1 := make([]byte, 16)
c.Decrypt(d1, d0)
}
}