diff options
Diffstat (limited to 'libgo/go/crypto/aes/cipher_generic.go')
-rw-r--r-- | libgo/go/crypto/aes/cipher_generic.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libgo/go/crypto/aes/cipher_generic.go b/libgo/go/crypto/aes/cipher_generic.go index 1714e0f..32b2b3c 100644 --- a/libgo/go/crypto/aes/cipher_generic.go +++ b/libgo/go/crypto/aes/cipher_generic.go @@ -17,3 +17,11 @@ func decryptBlock(xk []uint32, dst, src []byte) { func expandKey(key []byte, enc, dec []uint32) { expandKeyGo(key, enc, dec) } + +func hasGCMAsm() bool { + return false +} + +type aesCipherGCM struct { + aesCipher +} |