/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpc/ |
rpc_des.h | 48 CBC, ECB
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/ |
Blowfish.java | 32 public static class CBC 35 public CBC() 87 // provider.addAlgorithm("Cipher", MiscObjectIdentifiers.cryptlib_algorithm_blowfish_CBC, PREFIX + "$CBC");
|
/external/scapy/scapy/layers/tls/crypto/ |
cipher_block.py | 112 pc_cls_mode = modes.CBC 122 pc_cls_mode = modes.CBC 135 pc_cls_mode = modes.CBC 153 pc_cls_mode = modes.CBC 159 pc_cls_mode = modes.CBC 165 pc_cls_mode = modes.CBC 202 if GetCipherByName(_gcbn_format)(backend, _ARC2, modes.CBC) != \ 207 pc_cls_mode = modes.CBC
|
/frameworks/base/keystore/java/android/security/keystore/ |
AndroidKeyStore3DESCipherSpi.java | 81 abstract static class CBC extends AndroidKeyStore3DESCipherSpi { 82 protected CBC(int keymasterPadding) { 86 public static class NoPadding extends CBC { 92 public static class PKCS7Padding extends CBC {
|
AndroidKeyStoreUnauthenticatedAESCipherSpi.java | 62 abstract static class CBC extends AndroidKeyStoreUnauthenticatedAESCipherSpi { 63 protected CBC(int keymasterPadding) { 67 public static class NoPadding extends CBC { 73 public static class PKCS7Padding extends CBC {
|
/prebuilts/go/darwin-x86/src/crypto/aes/ |
modes.go | 19 // implementation of CBC encryption through the cipher.BlockMode interface. 20 // See crypto/cipher/cbc.go. 26 // implementation of CBC decryption through the cipher.BlockMode interface. 27 // See crypto/cipher/cbc.go.
|
/prebuilts/go/linux-x86/src/crypto/aes/ |
modes.go | 19 // implementation of CBC encryption through the cipher.BlockMode interface. 20 // See crypto/cipher/cbc.go. 26 // implementation of CBC decryption through the cipher.BlockMode interface. 27 // See crypto/cipher/cbc.go.
|
/external/libmicrohttpd/src/testcurl/https/ |
tls_test_common.h | 58 struct CBC 113 send_curl_req (char *url, struct CBC *cbc, const char *cipher_suite,
|
test_tls_options.c | 47 struct CBC cbc; local 48 if (NULL == (cbc.buf = malloc (sizeof (char) * 256))) 54 cbc.size = 256; 55 cbc.pos = 0; 60 free (cbc.buf); 67 send_curl_req (url, &cbc, cipher_suite, curl_req_ssl_version)) 69 free (cbc.buf); 74 free (cbc.buf); 131 MHD_OPTION_HTTPS_PRIORITIES, "NONE:+VERS-TLS1.0:+AES-128-CBC:+SHA1:+RSA:+COMP-NULL" [all...] |
/external/conscrypt/common/src/main/java/org/conscrypt/ |
OpenSSLCipher.java | 60 CBC, 667 case CBC: 709 public static class CBC extends AES { 710 public CBC(Padding padding) { 711 super(Mode.CBC, padding); 714 public static class NoPadding extends CBC { 720 public static class PKCS5Padding extends CBC { 770 public static class CBC extends AES_128 { 771 public CBC(Padding padding) { 772 super(Mode.CBC, padding) [all...] |
/external/libmicrohttpd/src/testcurl/ |
test_get_chunked.c | 50 struct CBC 60 struct CBC *cbc = ctx; local 62 if (cbc->pos + size * nmemb > cbc->size) 64 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 65 cbc->pos += size * nmemb; 133 validate (struct CBC cbc, int ebase 161 struct CBC cbc; local 203 struct CBC cbc; local 245 struct CBC cbc; local 288 struct CBC cbc; local [all...] |
test_digestauth.c | 51 struct CBC 61 struct CBC *cbc = ctx; local 63 if (cbc->pos + size * nmemb > cbc->size) 65 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 66 cbc->pos += size * nmemb; 134 struct CBC cbc; local [all...] |
test_digestauth_with_arguments.c | 50 struct CBC 60 struct CBC *cbc = ctx; local 62 if (cbc->pos + size * nmemb > cbc->size) 64 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 65 cbc->pos += size * nmemb; 133 struct CBC cbc; local [all...] |
test_urlparse.c | 51 struct CBC 61 struct CBC *cbc = ctx; local 63 if (cbc->pos + size * nmemb > cbc->size) 65 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 66 cbc->pos += size * nmemb; 131 struct CBC cbc; local [all...] |
test_iplimit.c | 56 struct CBC 66 struct CBC *cbc = ctx; local 68 if (cbc->pos + size * nmemb > cbc->size) 70 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 71 cbc->pos += size * nmemb; 130 struct CBC cbc[3] local 221 struct CBC cbc[3]; local [all...] |
test_timeout.c | 45 struct CBC 111 struct CBC *cbc = ctx; local 113 if (cbc->pos + size * nmemb > cbc->size) 115 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 116 cbc->pos += size * nmemb; 167 struct CBC cbc; local 223 struct CBC cbc; local [all...] |
test_get_sendfile.c | 56 struct CBC 66 struct CBC *cbc = ctx; local 68 if (cbc->pos + size * nmemb > cbc->size) 70 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 71 cbc->pos += size * nmemb; 122 struct CBC cbc; local 171 struct CBC cbc; local 220 struct CBC cbc; local 270 struct CBC cbc; local 393 struct CBC cbc; local [all...] |
/external/libmicrohttpd/src/testzzuf/ |
test_get.c | 43 struct CBC 53 struct CBC *cbc = ctx; local 55 if (cbc->pos + size * nmemb > cbc->size) 57 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 58 cbc->pos += size * nmemb; 101 struct CBC cbc; local 145 struct CBC cbc; local 190 struct CBC cbc; local [all...] |
test_get_chunked.c | 41 struct CBC 51 struct CBC *cbc = ctx; local 53 if (cbc->pos + size * nmemb > cbc->size) 55 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 56 cbc->pos += size * nmemb; 127 struct CBC cbc; local 168 struct CBC cbc; local 210 struct CBC cbc; local [all...] |
test_long_header.c | 56 struct CBC 99 struct CBC cbc; local 103 cbc.buf = buf; 104 cbc.size = 2048; 105 cbc.pos = 0; 130 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); 160 struct CBC cbc; local 165 cbc.buf = buf [all...] |
test_post.c | 46 struct CBC 71 struct CBC *cbc = ctx; local 73 if (cbc->pos + size * nmemb > cbc->size) 75 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 76 cbc->pos += size * nmemb; 154 struct CBC cbc; local 205 struct CBC cbc; local 258 struct CBC cbc; local [all...] |
test_post_form.c | 44 struct CBC 69 struct CBC *cbc = ctx; local 71 if (cbc->pos + size * nmemb > cbc->size) 73 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb); 74 cbc->pos += size * nmemb; 172 struct CBC cbc; local 223 struct CBC cbc; local 274 struct CBC cbc; local [all...] |
/external/conscrypt/openjdk-integ-tests/src/test/resources/crypto/ |
build_test_files.sh | 15 cat "$1"/CBC*.rsp | ./parse_records.py > aes-cbc.csv 20 cat "$1"/TCBC*.rsp | ./parse_records.py > desede-cbc.csv
|
/prebuilts/go/darwin-x86/src/crypto/cipher/ |
cbc_aes_test.go | 5 // CBC AES test vectors. 29 "CBC-AES128", 41 "CBC-AES192", 53 "CBC-AES256",
|
/prebuilts/go/linux-x86/src/crypto/cipher/ |
cbc_aes_test.go | 5 // CBC AES test vectors. 29 "CBC-AES128", 41 "CBC-AES192", 53 "CBC-AES256",
|