Searched refs:evp (Results 1 - 25 of 143) sorted by relevance

123456

/external/ltp/testcases/kernel/timers/timer_create/
H A Dtimer_create02.c80 static struct sigevent evp, *evp_ptr; variable in typeref:struct:sigevent
145 evp.sigev_value = (union sigval) 0;
146 evp.sigev_signo = SIGALRM;
147 evp.sigev_notify = SIGEV_SIGNAL;
148 evp_ptr = &evp;
154 evp.sigev_value = (union sigval) 0;
155 evp.sigev_signo = SIGALRM; /* any will do */
156 evp.sigev_notify = SIGEV_NONE;
157 evp_ptr = &evp;
H A Dtimer_create03.c80 static struct sigevent evp, *evp_ptr; variable in typeref:struct:sigevent
132 evp.sigev_value = (union sigval) 0;
133 evp.sigev_signo = SIGALRM;
134 evp.sigev_notify = SIGEV_SIGNAL;
135 evp_ptr = &evp;
141 evp.sigev_value = (union sigval) 0;
142 evp.sigev_signo = SIGALRM; /* any will do */
143 evp.sigev_notify = SIGEV_NONE;
144 evp_ptr = &evp;
/external/openssh/regress/unittests/sshkey/
H A Dtests.c10 #include <openssl/evp.h>
/external/boringssl/src/crypto/pem/
H A Dpem_x509.c61 #include <openssl/evp.h>
H A Dpem_xaux.c61 #include <openssl/evp.h>
H A Dpem_oth.c65 #include <openssl/evp.h>
/external/ppp/pppd/
H A Dopenssl-hash.h20 #include <openssl/evp.h>
/external/openssh/
H A Dcipher.c63 EVP_CIPHER_CTX *evp; member in struct:sshcipher_ctx
64 struct chachapoly_ctx cp_ctx; /* XXX union with evp? */
65 struct aesctr_ctx ac_ctx; /* XXX union with evp? */
375 if ((cc->evp = EVP_CIPHER_CTX_new()) == NULL) {
379 if (EVP_CipherInit(cc->evp, type, NULL, (u_char *)iv,
385 !EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_SET_IV_FIXED,
390 klen = EVP_CIPHER_CTX_key_length(cc->evp);
392 if (EVP_CIPHER_CTX_set_key_length(cc->evp, keylen) == 0) {
397 if (EVP_CipherInit(cc->evp, NULL, (u_char *)key, NULL, -1) == 0) {
409 ret = EVP_Cipher(cc->evp, discar
[all...]
H A Dcipher-ctr.c25 #include <openssl/evp.h>
114 ssh_aes_ctr_iv(EVP_CIPHER_CTX *evp, int doset, u_char * iv, size_t len) argument
118 if ((c = EVP_CIPHER_CTX_get_app_data(evp)) == NULL)
H A Dcipher-3des1.c27 #include <openssl/evp.h>
122 ssh1_3des_iv(EVP_CIPHER_CTX *evp, int doset, u_char *iv, int len) argument
128 if ((c = EVP_CIPHER_CTX_get_app_data(evp)) == NULL)
H A Dcipher-aes.c33 #include <openssl/evp.h>
130 ssh_rijndael_iv(EVP_CIPHER_CTX *evp, int doset, u_char * iv, u_int len) argument
134 if ((c = EVP_CIPHER_CTX_get_app_data(evp)) == NULL)
/external/boringssl/src/crypto/x509/
H A Di2d_pr.c61 #include <openssl/evp.h>
H A Dinternal.h19 #include <openssl/evp.h>
H A Dx509rset.c58 #include <openssl/evp.h>
H A Da_verify.c67 #include <openssl/evp.h>
H A Dx509_r2x.c62 #include <openssl/evp.h>
H A Dx509_txt.c60 #include <openssl/evp.h>
/external/webrtc/webrtc/base/
H A Dopenssldigest.h14 #include <openssl/evp.h>
/external/openssh/openbsd-compat/
H A Dopenssl-compat.h24 #include <openssl/evp.h>
/external/tpm2/
H A DOsslCryptoEngine.h11 #include <openssl/evp.h>
/external/boringssl/
H A Dsources.mk102 src/crypto/evp/digestsign.c\
103 src/crypto/evp/evp.c\
104 src/crypto/evp/evp_asn1.c\
105 src/crypto/evp/evp_ctx.c\
106 src/crypto/evp/p_dsa_asn1.c\
107 src/crypto/evp/p_ec.c\
108 src/crypto/evp/p_ec_asn1.c\
109 src/crypto/evp/p_ed25519.c\
110 src/crypto/evp/p_ed25519_asn
[all...]
/external/tcpdump/
H A Dprint-esp.c41 #include <openssl/evp.h>
113 const EVP_CIPHER *evp; member in struct:sa_list
175 if(sa->evp == NULL) return 0;
191 if (EVP_CipherInit(ctx, sa->evp, sa->secret, NULL, 0) < 0)
286 const EVP_CIPHER *evp; local
309 evp = EVP_get_cipherbyname(decode);
311 if (!evp) {
313 sa->evp = NULL;
319 sa->evp = evp;
[all...]
/external/boringssl/src/crypto/evp/
H A Dp_ed25519.c15 #include <openssl/evp.h>
/external/boringssl/src/decrepit/obj/
H A Dobj_decrepit.c20 #include <openssl/evp.h>
/external/boringssl/src/tool/
H A Dsign.cc19 #include <openssl/evp.h>

Completed in 462 milliseconds

123456