summaryrefslogtreecommitdiff
path: root/src/pkg/crypto/aes/cipher_generic.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/crypto/aes/cipher_generic.go')
-rw-r--r--src/pkg/crypto/aes/cipher_generic.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/pkg/crypto/aes/cipher_generic.go b/src/pkg/crypto/aes/cipher_generic.go
deleted file mode 100644
index 1714e0f1e..000000000
--- a/src/pkg/crypto/aes/cipher_generic.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2012 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build !amd64
-
-package aes
-
-func encryptBlock(xk []uint32, dst, src []byte) {
- encryptBlockGo(xk, dst, src)
-}
-
-func decryptBlock(xk []uint32, dst, src []byte) {
- decryptBlockGo(xk, dst, src)
-}
-
-func expandKey(key []byte, enc, dec []uint32) {
- expandKeyGo(key, enc, dec)
-}