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

1234567891011>>

/freebsd-10.0-release/usr.sbin/bhyve/
H A Dmevent.h43 int mevent_enable(struct mevent *evp);
44 int mevent_disable(struct mevent *evp);
45 int mevent_delete(struct mevent *evp);
46 int mevent_delete_close(struct mevent *evp);
H A Dmevent.c295 mevent_update(struct mevent *evp, int newstate) argument
300 if (evp->me_state == MEV_DEL_PENDING)
306 if (evp->me_state == newstate)
311 evp->me_state = newstate;
316 if (evp->me_cq == 0) {
317 evp->me_cq = 1;
318 LIST_REMOVE(evp, me_list);
319 LIST_INSERT_HEAD(&change_head, evp, me_list);
329 mevent_enable(struct mevent *evp) argument
332 return (mevent_update(evp, MEV_ENABL
336 mevent_disable(struct mevent *evp) argument
343 mevent_delete_event(struct mevent *evp, int closefd) argument
368 mevent_delete(struct mevent *evp) argument
375 mevent_delete_close(struct mevent *evp) argument
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/evp/
H A Devp_acnf.c60 #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>
H A De_bf.c1 /* crypto/evp/e_bf.c */
62 #include <openssl/evp.h>
H A De_cast.c1 /* crypto/evp/e_cast.c */
63 #include <openssl/evp.h>
H A De_null.c1 /* crypto/evp/e_null.c */
61 #include <openssl/evp.h>
H A De_seed.c1 /* crypto/evp/e_seed.c -*- mode:C; c-file-style: "eay" -*- */
58 #include <openssl/evp.h>
/freebsd-10.0-release/crypto/openssl/crypto/pkcs7/
H A Dpk7_dgst.c61 #include <openssl/evp.h>
/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dopenssl-compat.h21 #include <openssl/evp.h>
92 #define EVP_X_STATE(evp) &(evp).c
93 #define EVP_X_STATE_LEN(evp) sizeof((evp).c)
95 #define EVP_X_STATE(evp) (evp).cipher_data
96 #define EVP_X_STATE_LEN(evp) (evp).cipher->ctx_size
H A Dopenssl-compat.c40 ssh_EVP_CipherInit(EVP_CIPHER_CTX *evp, const EVP_CIPHER *type, argument
43 EVP_CipherInit(evp, type, key, iv, enc);
48 ssh_EVP_Cipher(EVP_CIPHER_CTX *evp, char *dst, char *src, int len) argument
50 EVP_Cipher(evp, dst, src, len);
55 ssh_EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *evp) argument
57 EVP_CIPHER_CTX_cleanup(evp);
/freebsd-10.0-release/crypto/openssl/crypto/pem/
H A Dpem_x509.c62 #include <openssl/evp.h>
H A Dpem_xaux.c62 #include <openssl/evp.h>
/freebsd-10.0-release/crypto/openssh/
H A Dcipher.c285 EVP_CIPHER_CTX_init(&cc->evp);
292 EVP_CipherInit(&cc->evp, type, (u_char *)key, (u_char *)iv,
295 if (EVP_CipherInit(&cc->evp, type, NULL, (u_char *)iv,
300 !EVP_CIPHER_CTX_ctrl(&cc->evp, EVP_CTRL_GCM_SET_IV_FIXED,
304 klen = EVP_CIPHER_CTX_key_length(&cc->evp);
307 if (EVP_CIPHER_CTX_set_key_length(&cc->evp, keylen) == 0)
311 if (EVP_CipherInit(&cc->evp, NULL, (u_char *)key, NULL, -1) == 0)
319 if (EVP_Cipher(&cc->evp, discard, junk,
348 if (!EVP_CIPHER_CTX_ctrl(&cc->evp, EVP_CTRL_GCM_IV_GEN,
353 !EVP_CIPHER_CTX_ctrl(&cc->evp, EVP_CTRL_GCM_SET_TA
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/cmac/
H A Dcm_ameth.c55 #include <openssl/evp.h>
H A Dcmac.h62 #include <openssl/evp.h>
/freebsd-10.0-release/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-10.0-release/crypto/openssl/crypto/asn1/
H A Di2d_pr.c61 #include <openssl/evp.h>
H A Di2d_pu.c62 #include <openssl/evp.h>
/freebsd-10.0-release/crypto/openssl/crypto/dh/
H A Ddh_prn.c61 #include <openssl/evp.h>
/freebsd-10.0-release/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-10.0-release/crypto/openssl/crypto/sha/
H A Dsha256t.c11 #include <openssl/evp.h>
60 EVP_MD_CTX evp; local
83 EVP_MD_CTX_init (&evp);
84 EVP_DigestInit_ex (&evp,EVP_sha256(),NULL);
86 EVP_DigestUpdate (&evp, "aaaaaaaa""aaaaaaaa""aaaaaaaa""aaaaaaaa"
92 EVP_DigestFinal_ex (&evp,md,NULL);
93 EVP_MD_CTX_cleanup (&evp);
126 EVP_MD_CTX_init (&evp);
127 EVP_DigestInit_ex (&evp,EVP_sha224(),NULL);
129 EVP_DigestUpdate (&evp, "aaaaaaa
[all...]
H A Dsha512t.c11 #include <openssl/evp.h>
79 EVP_MD_CTX evp; local
114 EVP_MD_CTX_init (&evp);
115 EVP_DigestInit_ex (&evp,EVP_sha512(),NULL);
117 EVP_DigestUpdate (&evp, "aaaaaaaa""aaaaaaaa""aaaaaaaa""aaaaaaaa"
127 EVP_DigestFinal_ex (&evp,md,NULL);
128 EVP_MD_CTX_cleanup (&evp);
163 EVP_MD_CTX_init (&evp);
164 EVP_DigestInit_ex (&evp,EVP_sha384(),NULL);
166 EVP_DigestUpdate (&evp, "aaaaaaa
[all...]

Completed in 121 milliseconds

1234567891011>>