1 // Copyright 2012 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
9 func encryptBlock(xk []uint32, dst, src []byte) {
10 encryptBlockGo(xk, dst, src)
13 func decryptBlock(xk []uint32, dst, src []byte) {
14 decryptBlockGo(xk, dst, src)
17 func expandKey(key []byte, enc, dec []uint32) {
18 expandKeyGo(key, enc, dec)