2021-09-04 11:58:43 +02:00
|
|
|
// +build !without_openssl
|
|
|
|
|
2021-09-04 11:41:56 +02:00
|
|
|
package stupidgcm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
|
|
|
#include "openssl_aead.h"
|
|
|
|
#cgo pkg-config: libcrypto
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
func openSSLSeal(a *stupidAEADCommon, dst, iv, in, authData []byte) []byte {
|
|
|
|
if a.Wiped() {
|
2021-09-04 12:01:50 +02:00
|
|
|
log.Panic("BUG: tried to use wiped key")
|
2021-09-04 11:41:56 +02:00
|
|
|
}
|
|
|
|
if len(iv) != a.NonceSize() {
|
|
|
|
log.Panicf("Only %d-byte IVs are supported, you passed %d bytes", a.NonceSize(), len(iv))
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the "dst" slice is large enough we can use it as our output buffer
|
|
|
|
outLen := len(in) + tagLen
|
|
|
|
var buf []byte
|
|
|
|
inplace := false
|
|
|
|
if cap(dst)-len(dst) >= outLen {
|
|
|
|
inplace = true
|
|
|
|
buf = dst[len(dst) : len(dst)+outLen]
|
|
|
|
} else {
|
|
|
|
buf = make([]byte, outLen)
|
|
|
|
}
|
|
|
|
|
|
|
|
res := int(C.openssl_aead_seal(a.openSSLEVPCipher,
|
2021-09-07 17:47:48 +02:00
|
|
|
slicePointerOrNull(in),
|
2021-09-04 11:41:56 +02:00
|
|
|
C.int(len(in)),
|
|
|
|
(*C.uchar)(&authData[0]),
|
|
|
|
C.int(len(authData)),
|
|
|
|
(*C.uchar)(&a.key[0]),
|
|
|
|
C.int(len(a.key)),
|
|
|
|
(*C.uchar)(&iv[0]),
|
|
|
|
C.int(len(iv)),
|
|
|
|
(*C.uchar)(&buf[0]),
|
|
|
|
C.int(len(buf))))
|
|
|
|
|
|
|
|
if res != outLen {
|
|
|
|
log.Panicf("expected length %d, got %d", outLen, res)
|
|
|
|
}
|
|
|
|
|
|
|
|
if inplace {
|
|
|
|
return dst[:len(dst)+outLen]
|
|
|
|
}
|
|
|
|
return append(dst, buf...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func openSSLOpen(a *stupidAEADCommon, dst, iv, in, authData []byte) ([]byte, error) {
|
|
|
|
if a.Wiped() {
|
2021-09-04 12:01:50 +02:00
|
|
|
log.Panic("BUG: tried to use wiped key")
|
2021-09-04 11:41:56 +02:00
|
|
|
}
|
|
|
|
if len(iv) != a.NonceSize() {
|
|
|
|
log.Panicf("Only %d-byte IVs are supported, you passed %d bytes", a.NonceSize(), len(iv))
|
|
|
|
}
|
2021-09-07 17:47:48 +02:00
|
|
|
if len(in) < tagLen {
|
2021-09-04 11:41:56 +02:00
|
|
|
return nil, fmt.Errorf("stupidChacha20poly1305: input data too short (%d bytes)", len(in))
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the "dst" slice is large enough we can use it as our output buffer
|
|
|
|
outLen := len(in) - tagLen
|
|
|
|
var buf []byte
|
|
|
|
inplace := false
|
|
|
|
if cap(dst)-len(dst) >= outLen {
|
|
|
|
inplace = true
|
|
|
|
buf = dst[len(dst) : len(dst)+outLen]
|
|
|
|
} else {
|
|
|
|
buf = make([]byte, len(in)-tagLen)
|
|
|
|
}
|
|
|
|
|
|
|
|
ciphertext := in[:len(in)-tagLen]
|
|
|
|
tag := in[len(in)-tagLen:]
|
|
|
|
|
|
|
|
res := int(C.openssl_aead_open(a.openSSLEVPCipher,
|
2021-09-07 17:47:48 +02:00
|
|
|
slicePointerOrNull(ciphertext),
|
2021-09-04 11:41:56 +02:00
|
|
|
C.int(len(ciphertext)),
|
|
|
|
(*C.uchar)(&authData[0]),
|
|
|
|
C.int(len(authData)),
|
|
|
|
(*C.uchar)(&tag[0]),
|
|
|
|
C.int(len(tag)),
|
|
|
|
(*C.uchar)(&a.key[0]),
|
|
|
|
C.int(len(a.key)),
|
|
|
|
(*C.uchar)(&iv[0]),
|
|
|
|
C.int(len(iv)),
|
2021-09-07 17:47:48 +02:00
|
|
|
slicePointerOrNull(buf),
|
2021-09-04 11:41:56 +02:00
|
|
|
C.int(len(buf))))
|
|
|
|
|
|
|
|
if res < 0 {
|
|
|
|
return nil, ErrAuth
|
|
|
|
}
|
|
|
|
if res != outLen {
|
|
|
|
log.Panicf("unexpected length %d", res)
|
|
|
|
}
|
|
|
|
|
|
|
|
if inplace {
|
|
|
|
return dst[:len(dst)+outLen], nil
|
|
|
|
}
|
|
|
|
return append(dst, buf...), nil
|
|
|
|
}
|
2021-09-05 12:17:38 +02:00
|
|
|
|
2021-09-07 17:47:48 +02:00
|
|
|
// slicePointerOrNull returns a C pointer to the beginning of the byte slice,
|
|
|
|
// or NULL if the byte slice is empty. This is useful for slices that can be
|
|
|
|
// empty, otherwise you can directly use "(*C.uchar)(&s[0])".
|
|
|
|
func slicePointerOrNull(s []byte) (ptr *C.uchar) {
|
|
|
|
if len(s) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return (*C.uchar)(&s[0])
|
|
|
|
}
|
|
|
|
|
2021-09-05 12:17:38 +02:00
|
|
|
// This functions exists to benchmark the C call overhead from Go.
|
|
|
|
// See BenchmarkCCall for resuts.
|
|
|
|
func noopCFunction() {
|
|
|
|
C.noop_c_function()
|
|
|
|
}
|