HomeSort by relevance Sort by last modified time
    Searched refs:EVP_CIPHER (Results 26 - 50 of 57) sorted by null

12 3

  /external/boringssl/src/fipstools/
cavp_tdes_test.cc 31 const EVP_CIPHER *cipher;
236 const EVP_CIPHER *cipher = ctx->cipher;
326 const EVP_CIPHER *cipher = GetCipher(argv[2]);
cavp_test_util.cc 34 const EVP_CIPHER *GetCipher(const std::string &name) {
79 bool CipherOperation(const EVP_CIPHER *cipher, std::vector<uint8_t> *out,
  /external/boringssl/src/crypto/cmac/
cmac.c 86 const EVP_CIPHER *cipher;
175 const EVP_CIPHER *cipher, ENGINE *engine) {
182 !EVP_Cipher(&ctx->cipher_ctx, scratch, kZeroIV, block_size) ||
232 if (!EVP_Cipher(&ctx->cipher_ctx, scratch, ctx->block, block_size)) {
239 if (!EVP_Cipher(&ctx->cipher_ctx, scratch, in, block_size)) {
277 return EVP_Cipher(&ctx->cipher_ctx, out, out, block_size);
cmac_test.cc 136 const EVP_CIPHER *cipher;
187 static void RunCAVPTest(const char *path, const EVP_CIPHER *cipher,
  /external/boringssl/src/crypto/pem/
pem_pkey.c 147 int PEM_write_bio_PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
168 int PEM_write_PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
pem_lib.c 188 static const EVP_CIPHER *cipher_by_name(const char *name)
257 void *x, const EVP_CIPHER *enc, unsigned char *kstr,
272 void *x, const EVP_CIPHER *enc, unsigned char *kstr,
417 const EVP_CIPHER *enc = NULL;
pem_info.c 278 int PEM_X509_INFO_write_bio(BIO *bp, X509_INFO *xi, EVP_CIPHER *enc,
  /external/boringssl/src/decrepit/xts/
xts.c 230 static const EVP_CIPHER aes_256_xts = {
238 const EVP_CIPHER *EVP_aes_256_xts(void) { return &aes_256_xts; }
  /external/boringssl/src/crypto/cipher_extra/
e_rc2.c 428 static const EVP_CIPHER rc2_40_cbc = {
442 const EVP_CIPHER *EVP_rc2_40_cbc(void) {
446 static const EVP_CIPHER rc2_cbc = {
460 const EVP_CIPHER *EVP_rc2_cbc(void) {
e_tls.c 65 const EVP_CIPHER *cipher, const EVP_MD *md,
139 // EVP_CIPHER takes int as input.
277 // EVP_CIPHER takes int as input.
  /external/boringssl/src/decrepit/cast/
cast.c 444 static const EVP_CIPHER cast5_ecb = {
453 static const EVP_CIPHER cast5_cbc = {
462 const EVP_CIPHER *EVP_cast5_ecb(void) { return &cast5_ecb; }
464 const EVP_CIPHER *EVP_cast5_cbc(void) { return &cast5_cbc; }
  /external/boringssl/src/decrepit/evp/
evp_do_all.c 18 void EVP_CIPHER_do_all_sorted(void (*callback)(const EVP_CIPHER *cipher,
  /external/openssh/
cipher.c 55 extern const EVP_CIPHER *evp_ssh1_bf(void);
56 extern const EVP_CIPHER *evp_ssh1_3des(void);
83 const EVP_CIPHER *(*evptype)(void);
332 const EVP_CIPHER *type;
409 ret = EVP_Cipher(cc->evp, discard, junk, cipher->discard_len);
486 EVP_Cipher(cc->evp, NULL, (u_char *)src, aadlen) < 0)
492 if (EVP_Cipher(cc->evp, dest + aadlen, (u_char *)src + aadlen,
497 if (EVP_Cipher(cc->evp, NULL, NULL, 0) < 0)
  /external/tcpdump/
print-esp.c 113 const EVP_CIPHER *evp;
161 set_cipher_parameters(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
173 set_cipher_parameters(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
242 EVP_Cipher(ctx, output_buffer, buf, len);
340 const EVP_CIPHER *evp;
794 EVP_Cipher(ctx, output_buffer, p + ivlen, len);
  /external/boringssl/src/decrepit/blowfish/
blowfish.c 595 static const EVP_CIPHER bf_ecb = {
604 static const EVP_CIPHER bf_cbc = {
613 static const EVP_CIPHER bf_cfb = {
622 const EVP_CIPHER *EVP_bf_ecb(void) { return &bf_ecb; }
624 const EVP_CIPHER *EVP_bf_cbc(void) { return &bf_cbc; }
626 const EVP_CIPHER *EVP_bf_cfb(void) { return &bf_cfb; }
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLCipher.java 477 public static abstract class EVP_CIPHER extends OpenSSLCipher {
479 * Native pointer for the OpenSSL EVP_CIPHER context.
485 * Whether the cipher has processed any data yet. EVP_CIPHER doesn't
496 public EVP_CIPHER(Mode mode, Padding padding) {
656 abstract static class AES_BASE extends EVP_CIPHER {
874 public static class DESEDE extends EVP_CIPHER {
    [all...]
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
OpenSSLCipher.java 484 public static abstract class EVP_CIPHER extends OpenSSLCipher {
486 * Native pointer for the OpenSSL EVP_CIPHER context.
492 * Whether the cipher has processed any data yet. EVP_CIPHER doesn't
503 public EVP_CIPHER(Mode mode, Padding padding) {
663 abstract static class AES_BASE extends EVP_CIPHER {
    [all...]
  /external/boringssl/src/crypto/pkcs8/
pkcs8.c 238 const EVP_CIPHER *cipher = suite->cipher_func();
446 const EVP_CIPHER *cipher,
  /external/boringssl/src/include/openssl/
base.h 371 typedef struct evp_cipher_st EVP_CIPHER;
evp.h     [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 1243 evp_crypt(vchar_t *data, vchar_t *key, vchar_t *iv, const EVP_CIPHER *e, int enc)
1314 if (!EVP_Cipher(&ctx, (u_char *) res->v, (u_char *) data->v, data->l)) {
1326 evp_weakkey(vchar_t *key, const EVP_CIPHER *e)
1332 evp_keylen(int len, const EVP_CIPHER *e)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
infinite_recursion.py 691 EVP_CIPHER = evp_cipher_st
693 ('cipher', POINTER(EVP_CIPHER)),
700 ('cipher', POINTER(EVP_CIPHER)),
730 EVP_PBE_KEYGEN = CFUNCTYPE(c_int, POINTER(EVP_CIPHER_CTX), STRING, c_int, POINTER(ASN1_TYPE), POINTER(EVP_CIPHER), POINTER(EVP_MD), c_int)
914 ('dec', POINTER(EVP_CIPHER)),
982 ('cipher', POINTER(EVP_CIPHER)),
    [all...]
  /external/python/cpython2/Lib/lib2to3/tests/data/
infinite_recursion.py 691 EVP_CIPHER = evp_cipher_st
693 ('cipher', POINTER(EVP_CIPHER)),
700 ('cipher', POINTER(EVP_CIPHER)),
730 EVP_PBE_KEYGEN = CFUNCTYPE(c_int, POINTER(EVP_CIPHER_CTX), STRING, c_int, POINTER(ASN1_TYPE), POINTER(EVP_CIPHER), POINTER(EVP_MD), c_int)
914 ('dec', POINTER(EVP_CIPHER)),
982 ('cipher', POINTER(EVP_CIPHER)),
    [all...]
  /external/python/cpython3/Lib/lib2to3/tests/data/
infinite_recursion.py 691 EVP_CIPHER = evp_cipher_st
693 ('cipher', POINTER(EVP_CIPHER)),
700 ('cipher', POINTER(EVP_CIPHER)),
730 EVP_PBE_KEYGEN = CFUNCTYPE(c_int, POINTER(EVP_CIPHER_CTX), STRING, c_int, POINTER(ASN1_TYPE), POINTER(EVP_CIPHER), POINTER(EVP_MD), c_int)
914 ('dec', POINTER(EVP_CIPHER)),
982 ('cipher', POINTER(EVP_CIPHER)),
    [all...]
  /external/grpc-grpc/src/core/tsi/alts/crypt/
aes_gcm.cc 597 const EVP_CIPHER* cipher = nullptr;

Completed in 509 milliseconds

12 3