Home
last modified time | relevance | path

Searched defs:aesCipher (Results 1 – 3 of 3) sorted by relevance

/prebuilts/go/linux-x86/src/crypto/aes/
Dcipher.go18 type aesCipher struct { struct
19 l uint8 // only this length of the enc and dec array is actually used
20 enc [28 + 32]uint32
21 dec [28 + 32]uint32
56 func (c *aesCipher) BlockSize() int { return BlockSize }
58 func (c *aesCipher) Encrypt(dst, src []byte) {
71 func (c *aesCipher) Decrypt(dst, src []byte) {
Dcipher_asm.go29 aesCipher anonMember
/prebuilts/go/linux-x86/src/crypto/internal/boring/
Daes.go63 type aesCipher struct { struct
64 key []byte
65 enc C.GO_AES_KEY
66 dec C.GO_AES_KEY
89 func (c *aesCipher) BlockSize() int { return aesBlockSize }
91 func (c *aesCipher) Encrypt(dst, src []byte) {
107 func (c *aesCipher) Decrypt(dst, src []byte) {
157 func (c *aesCipher) NewCBCEncrypter(iv []byte) cipher.BlockMode {
163 func (c *aesCipher) NewCBCDecrypter(iv []byte) cipher.BlockMode {
193 func (c *aesCipher) NewCTR(iv []byte) cipher.Stream {
[all …]