| /dragonfly/contrib/nvi2/common/ |
| HD | key.c | 350 EVENT *evp; in v_event_push() local 379 for (evp = gp->i_event + gp->i_next; nitems--; ++evp) { in v_event_push() 381 *evp = *p_evp++; in v_event_push() 383 evp->e_event = E_CHARACTER; in v_event_push() 384 evp->e_c = *p_s++; in v_event_push() 385 evp->e_value = KEY_VAL(sp, evp->e_c); in v_event_push() 386 F_INIT(&evp->e_ch, flags); in v_event_push() 400 EVENT *evp; in v_event_append() local 410 evp = gp->i_event + gp->i_next + gp->i_cnt; in v_event_append() 415 for (s = argp->e_csp; nevents--; ++evp) { in v_event_append() [all …]
|
| /dragonfly/crypto/openssh/ |
| HD | cipher.c | 61 EVP_CIPHER_CTX *evp; member 291 if ((cc->evp = EVP_CIPHER_CTX_new()) == NULL) { in cipher_init() 295 if (EVP_CipherInit(cc->evp, type, NULL, (u_char *)iv, in cipher_init() 301 !EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_SET_IV_FIXED, in cipher_init() 306 klen = EVP_CIPHER_CTX_key_length(cc->evp); in cipher_init() 308 if (EVP_CIPHER_CTX_set_key_length(cc->evp, keylen) == 0) { in cipher_init() 313 if (EVP_CipherInit(cc->evp, NULL, (u_char *)key, NULL, -1) == 0) { in cipher_init() 326 EVP_CIPHER_CTX_free(cc->evp); in cipher_init() 372 if (!EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_IV_GEN, in cipher_crypt() 377 !EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_SET_TAG, in cipher_crypt() [all …]
|
| HD | cipher-aes.c | 130 ssh_rijndael_iv(EVP_CIPHER_CTX *evp, int doset, u_char * iv, u_int len) in ssh_rijndael_iv() argument 134 if ((c = EVP_CIPHER_CTX_get_app_data(evp)) == NULL) in ssh_rijndael_iv()
|
| HD | ssh-pkcs11.c | 925 EVP_PKEY *evp; in pkcs11_fetch_x509_pubkey() local 993 if ((evp = X509_get_pubkey(x509)) == NULL) { in pkcs11_fetch_x509_pubkey() 998 if (EVP_PKEY_base_id(evp) == EVP_PKEY_RSA) { in pkcs11_fetch_x509_pubkey() 999 if (EVP_PKEY_get0_RSA(evp) == NULL) { in pkcs11_fetch_x509_pubkey() 1003 if ((rsa = RSAPublicKey_dup(EVP_PKEY_get0_RSA(evp))) == NULL) { in pkcs11_fetch_x509_pubkey() 1022 } else if (EVP_PKEY_base_id(evp) == EVP_PKEY_EC) { in pkcs11_fetch_x509_pubkey() 1023 if (EVP_PKEY_get0_EC_KEY(evp) == NULL) { in pkcs11_fetch_x509_pubkey() 1027 if ((ec = EC_KEY_dup(EVP_PKEY_get0_EC_KEY(evp))) == NULL) { in pkcs11_fetch_x509_pubkey()
|
| HD | configure.ac | 2992 [[#include <openssl/evp.h>]] 3026 #include <openssl/evp.h> 3045 #include <openssl/evp.h> 3070 #include <openssl/evp.h> 3088 #include <openssl/evp.h> 3106 #include <openssl/evp.h> 3121 #include <openssl/evp.h> 3179 #include <openssl/evp.h>
|
| /dragonfly/contrib/nvi2/cl/ |
| HD | cl_read.c | 46 cl_event(SCR *sp, EVENT *evp, u_int32_t flags, int ms) in cl_event() argument 64 evp->e_event = E_INTERRUPT; in cl_event() 66 evp->e_event = E_TIMEOUT; in cl_event() 71 evp->e_event = E_SIGHUP; in cl_event() 75 evp->e_event = E_SIGTERM; in cl_event() 84 evp->e_event = E_WRESIZE; in cl_event() 107 evp->e_csp = wp; in cl_event() 108 evp->e_len = wlen; in cl_event() 109 evp->e_event = E_STRING; in cl_event() 122 evp->e_event = E_EOF; in cl_event() [all …]
|
| /dragonfly/sys/netproto/smb/ |
| HD | smb_iod.c | 396 struct smbiod_event *evp; in smb_iod_request() local 400 evp = smb_zmalloc(sizeof(*evp), M_SMBIOD, M_WAITOK); in smb_iod_request() 401 evp->ev_type = event; in smb_iod_request() 402 evp->ev_ident = ident; in smb_iod_request() 404 STAILQ_INSERT_TAIL(&iod->iod_evlist, evp, ev_link); in smb_iod_request() 411 smb_sleep(evp, SMB_IOD_EVINTERLOCK(iod), PDROP, "90evw", 0); in smb_iod_request() 412 error = evp->ev_error; in smb_iod_request() 413 kfree(evp, M_SMBIOD); in smb_iod_request() 603 struct smbiod_event *evp; in smb_iod_main() local 615 evp = STAILQ_FIRST(&iod->iod_evlist); in smb_iod_main() [all …]
|
| /dragonfly/contrib/tcpdump/ |
| HD | print-esp.c | 115 const EVP_CIPHER *evp; member 207 if (set_cipher_parameters(ctx, sa->evp, sa->secret, NULL) < 0) { in do_decrypt() 307 if(sa->evp == NULL) return 0; in esp_decrypt_buffer_by_ikev2_print() 422 const EVP_CIPHER *evp; in espprint_decode_encalgo() local 445 evp = EVP_get_cipherbyname(decode); in espprint_decode_encalgo() 447 if (!evp) { in espprint_decode_encalgo() 449 sa->evp = NULL; in espprint_decode_encalgo() 455 sa->evp = evp; in espprint_decode_encalgo() 458 sa->ivlen = EVP_CIPHER_iv_length(evp); in espprint_decode_encalgo() 856 if (sa->evp == NULL) in esp_print()
|
| /dragonfly/contrib/nvi2/vi/ |
| HD | v_txt.c | 248 EVENT ev, *evp = NULL; /* Current event. */ in v_txt() local 476 evp = &ev; in v_txt() 477 next: if (v_event_get(sp, evp, 0, ec_flags)) in v_txt() 499 switch (evp->e_event) { in v_txt() 524 v_event_err(sp, evp); in v_txt() 535 if (LF_ISSET(TXT_RECORD) && rcol == 0 && evp->e_c == '\0') { in v_txt() 557 O_STR(sp, O_CEDIT)[0] == evp->e_c) in v_txt() 560 O_STR(sp, O_FILEC)[0] == evp->e_c) in v_txt() 575 if (F_ISSET(&evp->e_ch, CH_ABBREVIATED)) { in v_txt() 592 vip->rep[rcol++] = *evp; in v_txt() [all …]
|
| HD | vs_refresh.c | 42 EVENT *evp) in vs_repaint() argument 46 for (; evp->e_flno <= evp->e_tlno; ++evp->e_flno) { in vs_repaint() 47 smp = HMAP + evp->e_flno - 1; in vs_repaint()
|
| HD | vi.c | 1168 EVENT *evp, in v_key() argument 1174 if (v_event_get(sp, evp, 0, ec_flags | quote)) in v_key() 1178 switch (evp->e_event) { in v_key() 1187 if (evp->e_value == K_VLNEXT) { in v_key() 1208 if (vs_repaint(sp, evp)) in v_key() 1214 v_event_err(sp, evp); in v_key()
|
| /dragonfly/contrib/libedit/src/ |
| HD | history.c | 205 #define he_seterrev(evp, code) {\ argument 206 evp->num = code;\ 207 evp->str = he_strerror(code);\ 419 HistEventPrivate *evp = (void *)&h->cursor->ev; in history_def_add() local 423 elen = Strlen(evp->str); in history_def_add() 431 memcpy(s, evp->str, elen * sizeof(*s)); in history_def_add() 434 h_free(evp->str); in history_def_add() 435 evp->str = s; in history_def_add() 485 HistEventPrivate *evp = (void *)&hp->ev; in history_def_delete() local 495 h_free(evp->str); in history_def_delete()
|
| /dragonfly/lib/librt/ |
| HD | mq.c | 67 __mq_notify(mqd_t mqd, const struct sigevent *evp) in __mq_notify() argument 69 return (__sys_mq_notify(mqd, evp)); in __mq_notify()
|
| /dragonfly/usr.sbin/pstat/ |
| HD | pstat.c | 333 struct e_vnode *e_vnodebase, *endvnode, *evp; in vnodemode() local 349 for (evp = e_vnodebase; evp < endvnode; evp++) { in vnodemode() 350 vp = &evp->vnode; in vnodemode() 367 vnode_print(evp->avnode, vp); in vnodemode()
|
| /dragonfly/crypto/libressl/ |
| HD | README.DELETED | 106 crypto/evp/e_old.c 107 crypto/evp/m_null.c 108 crypto/evp/p_dec.c 109 crypto/evp/p_enc.c 110 crypto/evp/p_open.c 111 crypto/evp/p_seal.c 709 man/evp.3
|
| HD | ChangeLog | 266 bio.h, bn.h, comp.h, dh.h, dsa.h, evp.h, hmac.h, ocsp.h, rsa.h,
|
| /dragonfly/usr.bin/nc/ |
| HD | Makefile | 34 CFLAGS+=-I${.CURDIR}/../../crypto/libressl/crypto/evp
|
| /dragonfly/lib/librecrypto/ |
| HD | Makefile | 15 INCS+= ec.h ecdh.h ecdsa.h err.h evp.h gost.h 29 CFLAGS+= -I${LCRYPTO_SRC}/evp -I${.OBJDIR} 284 ${LCRYPTO_SRC}/evp \
|