stupidgcm: fix copy-paste error in panic message

Also, print the openssl version in Travis CI
This commit is contained in:
Jakob Unterwurzacher 2016-05-04 20:15:11 +02:00
parent 86eb37e41a
commit 6c010c3080
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ install:
# Travis does not support FUSE, so we can't just run "go test ./..."
script:
- openssl version
- go build
- ./build.bash
- go test ./internal/...

View File

@ -147,7 +147,7 @@ func (g stupidGCM) Open(dst, iv, in, authData []byte) ([]byte, error) {
// Provide authentication data
var resultLen C.int
if C.EVP_DecryptUpdate(ctx, nil, &resultLen, (*C.uchar)(&authData[0]), C.int(len(authData))) != 1 {
log.Panic("EVP_EncryptUpdate authData failed")
log.Panic("EVP_DecryptUpdate authData failed")
}
if int(resultLen) != len(authData) {
log.Panicf("Unexpected length %d", resultLen)