2015-12-10 20:52:59 +01:00
|
|
|
// +build go1.5
|
2016-01-22 21:39:16 +01:00
|
|
|
// = go 1.5 or higher
|
2015-12-10 20:52:59 +01:00
|
|
|
|
2016-02-06 19:20:54 +01:00
|
|
|
package cryptocore
|
2015-12-10 20:52:59 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/cipher"
|
|
|
|
)
|
|
|
|
|
2016-10-04 22:29:14 +02:00
|
|
|
const (
|
2016-10-04 23:30:05 +02:00
|
|
|
// HaveModernGoGCM indicates if Go GCM supports 128-bit nonces
|
2016-10-04 22:29:14 +02:00
|
|
|
HaveModernGoGCM = true
|
|
|
|
)
|
|
|
|
|
2015-12-10 20:52:59 +01:00
|
|
|
// goGCMWrapper - This wrapper makes sure gocryptfs can be compiled on Go
|
|
|
|
// versions 1.4 and lower that lack NewGCMWithNonceSize().
|
|
|
|
// 128 bit GCM IVs will not work when using built-in Go crypto, obviously, when
|
|
|
|
// compiled on 1.4.
|
2015-12-13 20:10:52 +01:00
|
|
|
func goGCMWrapper(bc cipher.Block, nonceSize int) (cipher.AEAD, error) {
|
2015-12-10 20:52:59 +01:00
|
|
|
return cipher.NewGCMWithNonceSize(bc, nonceSize)
|
|
|
|
}
|