aboutsummaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-05-04 20:15:11 +0200
committerJakob Unterwurzacher2016-05-04 20:15:11 +0200
commit6c010c30805f674de0f92072bb54c08d2e5b37e9 (patch)
treed27fa7b96015e2e8ce074fa45aff2002d7ca1632 /internal
parent86eb37e41a6caa434a8c06ed5b1743c836944853 (diff)
stupidgcm: fix copy-paste error in panic message
Also, print the openssl version in Travis CI
Diffstat (limited to 'internal')
-rw-r--r--internal/stupidgcm/stupidgcm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/stupidgcm/stupidgcm.go b/internal/stupidgcm/stupidgcm.go
index 6773a35..f92bc01 100644
--- a/internal/stupidgcm/stupidgcm.go
+++ b/internal/stupidgcm/stupidgcm.go
@@ -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)