libgocryptfs/internal/cryptocore/cryptocore_go1.4_test.go

20 lines
342 B
Go
Raw Normal View History

2016-05-04 22:10:06 +02:00
// +build !go1.5
// = go 1.4 or lower
package cryptocore
import (
"testing"
)
// Native Go crypto with 128-bit IVs is only supported on Go 1.5 and up
func TestCryptoCoreNewGo14(t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Errorf("The code did not panic")
}
}()
key := make([]byte, 32)
New(key, false, true)
}