Searched refs:RC4_KEY (Results 1 – 11 of 11) sorted by relevance
/external/boringssl/src/crypto/cipher/ |
D | e_rc4.c | 67 RC4_KEY *rc4key = (RC4_KEY *)ctx->cipher_data; in rc4_init_key() 75 RC4_KEY *rc4key = (RC4_KEY *)ctx->cipher_data; in rc4_cipher() 83 0 /* iv_len */, sizeof(RC4_KEY), EVP_CIPH_VARIABLE_LENGTH,
|
D | internal.h | 98 int (*get_rc4_state)(const EVP_AEAD_CTX *ctx, const RC4_KEY **out_key);
|
D | e_ssl3.c | 300 static int aead_ssl3_get_rc4_state(const EVP_AEAD_CTX *ctx, const RC4_KEY **out_key) { in aead_ssl3_get_rc4_state() 306 *out_key = (RC4_KEY*) ssl3_ctx->cipher_ctx.cipher_data; in aead_ssl3_get_rc4_state()
|
D | aead.c | 152 int EVP_AEAD_CTX_get_rc4_state(const EVP_AEAD_CTX *ctx, const RC4_KEY **out_key) { in EVP_AEAD_CTX_get_rc4_state()
|
D | e_tls.c | 435 const RC4_KEY **out_key) { in aead_rc4_tls_get_rc4_state() 441 *out_key = (const RC4_KEY*) tls_ctx->cipher_ctx.cipher_data; in aead_rc4_tls_get_rc4_state()
|
/external/boringssl/src/crypto/rc4/ |
D | rc4.c | 78 void RC4(RC4_KEY *key, size_t len, const uint8_t *in, uint8_t *out) { in RC4() 235 void RC4_set_key(RC4_KEY *rc4key, unsigned len, const uint8_t *key) { in RC4_set_key() 273 void asm_RC4(RC4_KEY *key, size_t len, const uint8_t *in, uint8_t *out); 274 void RC4(RC4_KEY *key, size_t len, const uint8_t *in, uint8_t *out) { in RC4() 278 void asm_RC4_set_key(RC4_KEY *rc4key, unsigned len, const uint8_t *key); 279 void RC4_set_key(RC4_KEY *rc4key, unsigned len, const uint8_t *key) { in RC4_set_key()
|
/external/boringssl/src/include/openssl/ |
D | rc4.h | 77 OPENSSL_EXPORT void RC4_set_key(RC4_KEY *rc4key, unsigned len, 82 OPENSSL_EXPORT void RC4(RC4_KEY *key, size_t len, const uint8_t *in,
|
D | aead.h | 323 const RC4_KEY **out_key);
|
D | base.h | 228 typedef struct rc4_key_st RC4_KEY; typedef
|
D | ssl.h | 2582 OPENSSL_EXPORT int SSL_get_rc4_state(const SSL *ssl, const RC4_KEY **read_key, 2583 const RC4_KEY **write_key);
|
/external/boringssl/src/ssl/ |
D | ssl_lib.c | 2542 int SSL_get_rc4_state(const SSL *ssl, const RC4_KEY **read_key, in SSL_get_rc4_state() 2543 const RC4_KEY **write_key) { in SSL_get_rc4_state()
|