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

1234567891011>>

/freebsd-11-stable/usr.sbin/bhyve/
H A Dmevent.h46 int mevent_enable(struct mevent *evp);
47 int mevent_disable(struct mevent *evp);
48 int mevent_delete(struct mevent *evp);
49 int mevent_delete_close(struct mevent *evp);
H A Dmevent.c309 mevent_update(struct mevent *evp, int newstate) argument
314 if (evp->me_state == MEV_DEL_PENDING)
320 if (evp->me_state == newstate)
325 evp->me_state = newstate;
330 if (evp->me_cq == 0) {
331 evp->me_cq = 1;
332 LIST_REMOVE(evp, me_list);
333 LIST_INSERT_HEAD(&change_head, evp, me_list);
343 mevent_enable(struct mevent *evp) argument
346 return (mevent_update(evp, MEV_ENABL
350 mevent_disable(struct mevent *evp) argument
357 mevent_delete_event(struct mevent *evp, int closefd) argument
382 mevent_delete(struct mevent *evp) argument
389 mevent_delete_close(struct mevent *evp) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Devp_acnf.c61 #include <openssl/evp.h>
H A De_dsa.c1 /* crypto/evp/e_dsa.c */
61 #include <openssl/evp.h>
H A Dc_all.c1 /* crypto/evp/c_all.c */
61 #include <openssl/evp.h>
H A Dm_null.c1 /* crypto/evp/m_null.c */
61 #include <openssl/evp.h>
/freebsd-11-stable/crypto/openssh/regress/unittests/sshkey/
H A Dtests.c10 #include <openssl/evp.h>
/freebsd-11-stable/crypto/openssl/crypto/pkcs7/
H A Dpk7_dgst.c61 #include <openssl/evp.h>
/freebsd-11-stable/crypto/heimdal/include/hcrypto/
H A DMakefile.am15 evp.h \
16 evp-hcrypto.h \
17 evp-cc.h \
/freebsd-11-stable/crypto/openssl/crypto/pem/
H A Dpem_x509.c63 #include <openssl/evp.h>
H A Dpem_xaux.c63 #include <openssl/evp.h>
/freebsd-11-stable/crypto/openssl/crypto/cmac/
H A Dcm_ameth.c56 #include <openssl/evp.h>
H A Dcmac.h62 # include <openssl/evp.h>
/freebsd-11-stable/crypto/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? */
371 if ((cc->evp = EVP_CIPHER_CTX_new()) == NULL) {
375 if (EVP_CipherInit(cc->evp, type, NULL, (u_char *)iv,
381 !EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_SET_IV_FIXED,
386 klen = EVP_CIPHER_CTX_key_length(cc->evp);
388 if (EVP_CIPHER_CTX_set_key_length(cc->evp, keylen) == 0) {
393 if (EVP_CipherInit(cc->evp, NULL, (u_char *)key, NULL, -1) == 0) {
405 ret = EVP_Cipher(cc->evp, discar
[all...]
/freebsd-11-stable/contrib/nvi/common/
H A Dkey.c364 EVENT *evp; local
393 for (evp = gp->i_event + gp->i_next; nitems--; ++evp) {
395 *evp = *p_evp++;
397 evp->e_event = E_CHARACTER;
398 evp->e_c = *p_s++;
399 evp->e_value = KEY_VAL(sp, evp->e_c);
400 F_INIT(&evp->e_ch, flags);
416 EVENT *evp; local
544 EVENT *evp, ev; local
777 v_event_err( SCR *sp, EVENT *evp) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/dh/
H A Ddh_prn.c61 #include <openssl/evp.h>
/freebsd-11-stable/contrib/nvi/cl/
H A Dcl_read.c49 cl_event(SCR *sp, EVENT *evp, u_int32_t flags, int ms) argument
67 evp->e_event = E_INTERRUPT;
69 evp->e_event = E_TIMEOUT;
74 evp->e_event = E_SIGHUP;
78 evp->e_event = E_SIGTERM;
87 evp->e_event = E_WRESIZE;
110 evp->e_csp = wp;
111 evp->e_len = wlen;
112 evp->e_event = E_STRING;
125 evp
[all...]
/freebsd-11-stable/crypto/openssl/crypto/sha/
H A Dsha256t.c11 #include <openssl/evp.h>
67 EVP_MD_CTX evp; local
91 EVP_MD_CTX_init(&evp);
92 EVP_DigestInit_ex(&evp, EVP_sha256(), NULL);
94 EVP_DigestUpdate(&evp, "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa"
100 EVP_DigestFinal_ex(&evp, md, NULL);
101 EVP_MD_CTX_cleanup(&evp);
136 EVP_MD_CTX_init(&evp);
137 EVP_DigestInit_ex(&evp, EVP_sha224(), NULL);
139 EVP_DigestUpdate(&evp, "aaaaaaa
[all...]
H A Dsha512t.c11 #include <openssl/evp.h>
86 EVP_MD_CTX evp; local
124 EVP_MD_CTX_init(&evp);
125 EVP_DigestInit_ex(&evp, EVP_sha512(), NULL);
127 EVP_DigestUpdate(&evp, "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa"
137 EVP_DigestFinal_ex(&evp, md, NULL);
138 EVP_MD_CTX_cleanup(&evp);
174 EVP_MD_CTX_init(&evp);
175 EVP_DigestInit_ex(&evp, EVP_sha384(), NULL);
177 EVP_DigestUpdate(&evp, "aaaaaaa
[all...]
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_timer.c95 struct sigevent ev, *evp; local
99 if (uap->evp == NULL) {
100 evp = NULL;
102 error = copyin(uap->evp, &l_ev, sizeof(l_ev));
108 evp = &ev;
113 error = kern_ktimer_create(td, nwhich, evp, &id, -1);
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Dmd5.h54 #include <openssl/evp.h>
H A Dsha1.h39 #include <openssl/evp.h>
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Di2d_pu.c62 #include <openssl/evp.h>
/freebsd-11-stable/crypto/openssl/ssl/
H A Dt1_clnt.c64 #include <openssl/evp.h>
H A Dt1_srvr.c64 #include <openssl/evp.h>

Completed in 159 milliseconds

1234567891011>>