HomeSort by relevance Sort by last modified time
    Searched refs:CBC (Results 51 - 75 of 92) sorted by null

1 23 4

  /external/lzma/Asm/x86/
AesOpt.asm 73 ; ---------- AES-CBC Decode ----------
131 ; ---------- AES-CBC Encode ----------
  /libcore/benchmarks/src/benchmarks/regression/
CipherBenchmark.java 60 CBC,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DESede.java 63 static public class CBC
66 public CBC()
215 * PBEWithSHAAnd3-KeyTripleDES-CBC
227 * PBEWithSHAAnd2-KeyTripleDES-CBC
239 * PBEWithSHAAnd3-KeyTripleDES-CBC
246 super("PBEwithSHAandDES3Key-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd3_KeyTripleDES_CBC, true, PKCS12, SHA1, 192, 64);
251 * PBEWithSHAAnd2-KeyTripleDES-CBC
258 super("PBEwithSHAandDES2Key-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd2_KeyTripleDES_CBC, true, PKCS12, SHA1, 128, 64);
385 // provider.addAlgorithm("Cipher", PKCSObjectIdentifiers.des_EDE3_CBC, PREFIX + "$CBC");
407 provider.addAlgorithm("Cipher.PBEWITHSHAAND3-KEYTRIPLEDES-CBC", PREFIX + "$PBEWithSHAAndDES3Key")
    [all...]
DES.java 63 static public class CBC
66 public CBC()
452 // provider.addAlgorithm("Cipher", OIWObjectIdentifiers.desCBC, PREFIX + "$CBC");
507 // provider.addAlgorithm("Alg.Alias.Cipher.PBEWITHMD2ANDDES-CBC", "PBEWITHMD2ANDDES");
509 provider.addAlgorithm("Alg.Alias.Cipher.PBEWITHMD5ANDDES-CBC", "PBEWITHMD5ANDDES");
510 provider.addAlgorithm("Alg.Alias.Cipher.PBEWITHSHA1ANDDES-CBC", "PBEWITHSHA1ANDDES");
513 // provider.addAlgorithm("Alg.Alias.Cipher.PBEWITHMD2ANDDES-CBC", "PBEWITHMD2ANDDES");
519 // provider.addAlgorithm("Alg.Alias.SecretKeyFactory.PBEWITHMD2ANDDES-CBC", "PBEWITHMD2ANDDES");
521 provider.addAlgorithm("Alg.Alias.SecretKeyFactory.PBEWITHMD5ANDDES-CBC", "PBEWITHMD5ANDDES");
522 provider.addAlgorithm("Alg.Alias.SecretKeyFactory.PBEWITHSHA1ANDDES-CBC", "PBEWITHSHA1ANDDES")
    [all...]
AES.java 100 public static class CBC
103 public CBC()
305 * PBEWithAES-CBC
317 * PBEWithSHA1AES-CBC
347 * PBEWithSHA256AES-CBC
429 super("PBEWithSHA1And128BitAES-CBC-BC", null, true, PKCS12, SHA1, 128, 128);
441 super("PBEWithSHA1And192BitAES-CBC-BC", null, true, PKCS12, SHA1, 192, 128);
453 super("PBEWithSHA1And256BitAES-CBC-BC", null, true, PKCS12, SHA1, 256, 128);
465 super("PBEWithSHA256And128BitAES-CBC-BC", null, true, PKCS12, SHA256, 128, 128);
477 super("PBEWithSHA256And192BitAES-CBC-BC", null, true, PKCS12, SHA256, 192, 128)
    [all...]
  /external/libmicrohttpd/src/testcurl/https/
test_empty_response.c 67 struct CBC cbc; local
80 cbc.buf = buf;
81 cbc.size = 2048;
82 cbc.pos = 0;
100 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc);
181 if (cbc.pos != 0)
test_https_get_select.c 81 struct CBC cbc; local
95 cbc.buf = buf;
96 cbc.size = 2048;
97 cbc.pos = 0;
112 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc);
202 if (cbc.pos != strlen ("/hello_world"))
204 if (0 != strncmp ("/hello_world", cbc.buf, strlen ("/hello_world")))
test_https_sni.c 184 struct CBC cbc; local
190 if (NULL == (cbc.buf = malloc (sizeof (char) * len)))
195 cbc.size = len;
196 cbc.pos = 0;
207 curl_easy_setopt (c, CURLOPT_FILE, &cbc);
227 free (cbc.buf);
234 if (memcmp (cbc.buf, test_data, len) != 0)
237 free (cbc.buf);
241 free (cbc.buf)
    [all...]
  /system/security/keystore/
keystore_client_impl.cpp 65 // The encryption algorithm is AES-256-CBC with PKCS #7 padding and a random
79 encrypt_params.Authorization(TAG_BLOCK_MODE, BlockMode::CBC);
138 encrypt_params.Authorization(TAG_BLOCK_MODE, BlockMode::CBC);
384 .Authorization(TAG_BLOCK_MODE, BlockMode::CBC)
465 if (!block_mode.isOk() || block_mode.value() != BlockMode::CBC) {
keystore_cli_v2.cpp 160 parameters.Authorization(TAG_BLOCK_MODE, BlockMode::CBC);
  /prebuilts/go/darwin-x86/src/crypto/cipher/
cipher.go 38 // A BlockMode represents a block cipher running in a block-based mode (CBC,
example_test.go 87 // CBC mode always works in whole blocks.
113 // CBC mode works on blocks so plaintexts may need to be padded to the
  /prebuilts/go/linux-x86/src/crypto/cipher/
cipher.go 38 // A BlockMode represents a block cipher running in a block-based mode (CBC,
example_test.go 87 // CBC mode always works in whole blocks.
113 // CBC mode works on blocks so plaintexts may need to be padded to the
  /hardware/interfaces/keymaster/3.0/
types.hal 177 CBC = 2,
  /external/boringssl/src/crypto/cipher_extra/test/nist_cavp/
make_cavp.go 31 cmdLineLabelStr = flag.String("extra-labels", "", "Comma-separated list of additional label pairs to add (e.g. 'Cipher=AES-128-CBC,Operation=ENCRYPT')")
32 swapIVAndPlaintext = flag.Bool("swap-iv-plaintext", false, "When processing CBC vector files for CTR mode, swap IV and plaintext.")
  /external/boringssl/src/ssl/test/runner/
shim_ticket.go 69 cbc := cipher.NewCBCDecrypter(block, iv)
70 cbc.CryptBlocks(out, in)
75 return nil, errors.New("tls: bad shim ticket CBC pad")
80 return nil, errors.New("tls: bad shim ticket CBC pad")
101 cbc := cipher.NewCBCEncrypter(block, iv)
113 cbc.CryptBlocks(ciphertext, ciphertext)
  /compatibility/cdd/9_security-model/
9_9_full-disk-encryption.md 58 256-bits in CBC-CTS mode.
85 designed for storage (for example, AES-XTS, AES-CBC-ESSIV).
  /external/boringssl/src/crypto/cipher_extra/test/
make_legacy_aead_tests.go 207 cbc := cipher.NewCBCEncrypter(block, iv)
209 sealed = make([]byte, 0, len(input)+len(digest)+cbc.BlockSize())
217 paddingLen := cbc.BlockSize() - (len(sealed) % cbc.BlockSize())
219 if paddingLen != cbc.BlockSize() {
227 paddingLen += cbc.BlockSize()
229 if paddingLen != cbc.BlockSize() {
262 cbc.CryptBlocks(sealed, sealed)
330 // For CBC-mode ciphers, emit tests for padding flexibility.
361 // value in the constant-time CBC logic
    [all...]
  /hardware/interfaces/keymaster/3.0/vts/functional/
keymaster_hidl_hal_test.cpp     [all...]
keymaster_tags.h 371 case BlockMode::CBC:
372 return "Cbc";
  /prebuilts/go/darwin-x86/src/encoding/pem/
pem_test.go 292 DEK-Info: DES-EDE3-CBC,80C7C7A09690757A
438 Headers: map[string]string{"DEK-Info": "DES-EDE3-CBC,80C7C7A09690757A", "Proc-Type": "4,ENCRYPTED"},
508 "DEK-Info": "AES-128-CBC,BFCD243FEDBB40A4AA6DDAA1335473A4",
554 DEK-Info: AES-128-CBC,BFCD243FEDBB40A4AA6DDAA1335473A4
  /prebuilts/go/linux-x86/src/encoding/pem/
pem_test.go 292 DEK-Info: DES-EDE3-CBC,80C7C7A09690757A
438 Headers: map[string]string{"DEK-Info": "DES-EDE3-CBC,80C7C7A09690757A", "Proc-Type": "4,ENCRYPTED"},
508 "DEK-Info": "AES-128-CBC,BFCD243FEDBB40A4AA6DDAA1335473A4",
554 DEK-Info: AES-128-CBC,BFCD243FEDBB40A4AA6DDAA1335473A4
  /prebuilts/go/darwin-x86/src/crypto/tls/
tls.go 9 // against Lucky13 attacks on CBC-mode encryption, and only on SHA1
  /prebuilts/go/linux-x86/src/crypto/tls/
tls.go 9 // against Lucky13 attacks on CBC-mode encryption, and only on SHA1

Completed in 727 milliseconds

1 23 4