Home
last modified time | relevance | path

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

/aosp_15_r20/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 …]
/aosp_15_r20/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
/aosp_15_r20/external/robolectric/robolectric/src/test/java/org/robolectric/android/internal/
H A DAndroidTestEnvironmentTest.java142 Cipher aesCipher = Cipher.getInstance("RSA/None/OAEPWithSHA-256AndMGF1Padding"); in testWhenConscryptModeOn_BouncyCastleInstalled() local
165 Cipher aesCipher = in testWhenConscryptModeOff_BouncyCastleInstalled() local
/aosp_15_r20/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DPacketUtils.java691 final Cipher aesCipher = Cipher.getInstance(AES_CBC); in getIcv() local