Searched defs:aesCipher (Results 1 – 5 of 5) sorted by relevance
63 type aesCipher struct { struct64 key []byte65 enc C.GO_AES_KEY66 dec C.GO_AES_KEY89 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 …]
18 type aesCipher struct { struct19 l uint8 // only this length of the enc and dec array is actually used20 enc [28 + 32]uint3221 dec [28 + 32]uint3256 func (c *aesCipher) BlockSize() int { return BlockSize }58 func (c *aesCipher) Encrypt(dst, src []byte) {71 func (c *aesCipher) Decrypt(dst, src []byte) {
29 aesCipher anonMember
142 Cipher aesCipher = Cipher.getInstance("RSA/None/OAEPWithSHA-256AndMGF1Padding"); in testWhenConscryptModeOn_BouncyCastleInstalled() local165 Cipher aesCipher = in testWhenConscryptModeOff_BouncyCastleInstalled() local
691 final Cipher aesCipher = Cipher.getInstance(AES_CBC); in getIcv() local