Symbol: verify
crypto/libressl/apps/openssl/apps.c
343
password_callback(char *buf, int bufsiz, int verify, void *arg)
crypto/libressl/apps/openssl/apps.c
380
if (ok >= 0 && verify) {
crypto/libressl/apps/openssl/apps.h
153
int password_callback(char *buf, int bufsiz, int verify, void *cb_data);
crypto/libressl/apps/openssl/crl.c
199
.opt.flag = &crl_config.verify,
crypto/libressl/apps/openssl/crl.c
258
crl_config.verify = 1;
crypto/libressl/apps/openssl/crl.c
282
if (crl_config.verify) {
crypto/libressl/apps/openssl/crl.c
88
int verify;
crypto/libressl/apps/openssl/req.c
169
int verify;
crypto/libressl/apps/openssl/req.c
513
.opt.flag = &req_config.verify,
crypto/libressl/apps/openssl/req.c
987
if (req_config.verify && !req_config.x509) {
crypto/libressl/apps/openssl/s_client.c
1070
SSL_CTX_set_verify(ctx, s_client_config.verify, verify_callback);
crypto/libressl/apps/openssl/s_client.c
246
int verify;
crypto/libressl/apps/openssl/s_client.c
386
s_client_config.verify = SSL_VERIFY_PEER;
crypto/libressl/apps/openssl/s_client.c
943
s_client_config.verify = SSL_VERIFY_NONE;
crypto/libressl/apps/openssl/s_time.c
113
int verify;
crypto/libressl/apps/openssl/s_time.c
255
s_time_config.verify = SSL_VERIFY_NONE;
crypto/libressl/apps/openssl/s_time.c
264
s_time_config.verify = SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE;
crypto/libressl/apps/openssl/s_time.c
291
SSL_CTX_set_verify(tm_ctx, s_time_config.verify, NULL);
crypto/libressl/apps/openssl/spkac.c
156
.opt.flag = &spkac_config.verify,
crypto/libressl/apps/openssl/spkac.c
289
if (spkac_config.verify) {
crypto/libressl/apps/openssl/spkac.c
86
int verify;
crypto/libressl/crypto/cms/cms_dd.c
109
cms_DigestedData_do_final(CMS_ContentInfo *cms, BIO *chain, int verify)
crypto/libressl/crypto/cms/cms_dd.c
130
if (verify) {
crypto/libressl/crypto/cms/cms_lcl.h
424
int cms_DigestedData_do_final(CMS_ContentInfo *cms, BIO *chain, int verify);
crypto/libressl/crypto/dsa/dsa_pmeth.c
337
.verify = pkey_dsa_verify,
crypto/libressl/crypto/ec/ec_kmeth.c
256
int (*verify)(int type, const unsigned char *dgst, int dgst_len,
crypto/libressl/crypto/ec/ec_kmeth.c
261
meth->verify = verify;
crypto/libressl/crypto/ec/ec_kmeth.c
333
*pverify = meth->verify;
crypto/libressl/crypto/ec/ec_kmeth.c
84
.verify = ossl_ecdsa_verify,
crypto/libressl/crypto/ec/ec_lcl.h
472
int (*verify)(int type, const unsigned char *dgst, int dgst_len,
crypto/libressl/crypto/ec/ec_pmeth.c
515
.verify = pkey_ec_verify,
crypto/libressl/crypto/ecdsa/ecs_vrf.c
97
if (eckey->meth->verify != NULL)
crypto/libressl/crypto/ecdsa/ecs_vrf.c
98
return eckey->meth->verify(type, dgst, dgst_len,
crypto/libressl/crypto/evp/evp_key.c
100
int verify)
crypto/libressl/crypto/evp/evp_key.c
118
if (verify) {
crypto/libressl/crypto/evp/evp_key.c
93
EVP_read_pw_string(char *buf, int len, const char *prompt, int verify)
crypto/libressl/crypto/evp/evp_key.c
95
return EVP_read_pw_string_min(buf, 0, len, prompt, verify);
crypto/libressl/crypto/evp/evp_locl.h
232
int (*verify)(EVP_PKEY_CTX *ctx,
crypto/libressl/crypto/evp/pmeth_fn.c
123
if (!ctx || !ctx->pmeth || !ctx->pmeth->verify) {
crypto/libressl/crypto/evp/pmeth_fn.c
140
if (!ctx || !ctx->pmeth || !ctx->pmeth->verify) {
crypto/libressl/crypto/evp/pmeth_fn.c
148
return ctx->pmeth->verify(ctx, sig, siglen, tbs, tbslen);
crypto/libressl/crypto/evp/pmeth_lib.c
546
int (*verify)(EVP_PKEY_CTX *ctx, const unsigned char *sig, size_t siglen,
crypto/libressl/crypto/evp/pmeth_lib.c
550
pmeth->verify = verify;
crypto/libressl/crypto/gost/gostr341001_pmeth.c
697
.verify = pkey_gost01_verify,
crypto/libressl/crypto/rsa/rsa_meth.c
272
RSA_meth_set_verify(RSA_METHOD *meth, int (*verify)(int dtype,
crypto/libressl/crypto/rsa/rsa_meth.c
276
meth->rsa_verify = verify;
crypto/libressl/crypto/rsa/rsa_pmeth.c
789
.verify = pkey_rsa_verify,
crypto/libressl/crypto/rsa/rsa_pmeth.c
864
.verify = pkey_rsa_verify,
crypto/libressl/crypto/x509/x509_lcl.h
295
int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */
crypto/libressl/crypto/x509/x509_lcl.h
338
int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */
crypto/libressl/crypto/x509/x509_lu.c
817
X509_STORE_set_verify(X509_STORE *store, X509_STORE_CTX_verify_fn verify)
crypto/libressl/crypto/x509/x509_lu.c
819
store->verify = verify;
crypto/libressl/crypto/x509/x509_lu.c
825
return store->verify;
crypto/libressl/crypto/x509/x509_vfy.c
2377
if (store && store->verify)
crypto/libressl/crypto/x509/x509_vfy.c
2378
ctx->verify = store->verify;
crypto/libressl/crypto/x509/x509_vfy.c
2380
ctx->verify = internal_verify;
crypto/libressl/crypto/x509/x509_vfy.c
2539
return ctx->verify;
crypto/libressl/crypto/x509/x509_vfy.c
2543
X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx, int (*verify)(X509_STORE_CTX *))
crypto/libressl/crypto/x509/x509_vfy.c
2545
ctx->verify = verify;
crypto/libressl/crypto/x509/x509_vfy.c
580
if (ctx->verify != NULL)
crypto/libressl/crypto/x509/x509_vfy.c
581
ok = ctx->verify(ctx);
crypto/libressl/include/openssl/ecdsa.h
277
int (*verify)(int type, const unsigned char *dgst, int dgst_len,
crypto/libressl/include/openssl/evp.h
1123
int (*verify)(EVP_PKEY_CTX *ctx, const unsigned char *sig, size_t siglen,
crypto/libressl/include/openssl/evp.h
458
int EVP_read_pw_string(char *buf, int length, const char *prompt, int verify);
crypto/libressl/include/openssl/evp.h
460
const char *prompt, int verify);
crypto/libressl/include/openssl/rsa.h
473
int RSA_meth_set_verify(RSA_METHOD *rsa, int (*verify)(int dtype,
crypto/libressl/include/openssl/ui.h
370
int verify);
crypto/libressl/include/openssl/ui.h
372
int verify);
crypto/libressl/include/openssl/x509_vfy.h
398
int (*verify)(X509_STORE_CTX *));
crypto/libressl/include/openssl/x509_vfy.h
405
void X509_STORE_set_verify(X509_STORE *ctx, X509_STORE_CTX_verify_fn verify);
crypto/libressl/ssl/ssl_srvr.c
1173
CBB cbb, verify, cookie;
crypto/libressl/ssl/ssl_srvr.c
1190
if (!ssl3_handshake_msg_start(s, &cbb, &verify,
crypto/libressl/ssl/ssl_srvr.c
1193
if (!CBB_add_u16(&verify, DTLS1_VERSION))
crypto/libressl/ssl/ssl_srvr.c
1195
if (!CBB_add_u8_length_prefixed(&verify, &cookie))
crypto/libressl/ssl/ssl_srvr.c
1931
int al, verify;
crypto/libressl/ssl/ssl_srvr.c
2056
verify = RSA_verify(NID_md5_sha1, s->s3->hs.tls12.cert_verify,
crypto/libressl/ssl/ssl_srvr.c
2059
if (verify < 0) {
crypto/libressl/ssl/ssl_srvr.c
2064
if (verify == 0) {
crypto/libressl/ssl/ssl_srvr.c
2077
verify = ECDSA_verify(0,
crypto/libressl/ssl/ssl_srvr.c
2081
if (verify <= 0) {
crypto/libressl/tls/tls.c
581
tls_configure_ssl_verify(struct tls *ctx, SSL_CTX *ssl_ctx, int verify)
crypto/libressl/tls/tls.c
595
SSL_CTX_set_verify(ssl_ctx, verify, NULL);
crypto/libressl/tls/tls_internal.h
247
int tls_configure_ssl_verify(struct tls *ctx, SSL_CTX *ssl_ctx, int verify);
crypto/libressl/tls/tls_server.c
251
int verify = SSL_VERIFY_PEER;
crypto/libressl/tls/tls_server.c
253
verify |= SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
crypto/libressl/tls/tls_server.c
254
if (tls_configure_ssl_verify(ctx, *ssl_ctx, verify) == -1)
crypto/openssh/sshkey.c
2141
return impl->funcs->verify(key, sig, siglen, data, dlen,
crypto/openssh/sshkey.h
185
int (*verify)(const struct sshkey *, const u_char *, size_t,
lib/libtelnet/read_password.c
105
if (verify) {
lib/libtelnet/read_password.c
135
if (verify)
lib/libtelnet/read_password.c
66
local_des_read_pw_string(s,max,prompt,verify)
lib/libtelnet/read_password.c
70
int verify;
sbin/vinum/commands.c
462
message->verify = vflag; /* verify what we write? */
sbin/vinum/commands.c
482
message->verify = vflag; /* verify what we write? */
sbin/vinum/commands.c
499
message->verify = vflag; /* verify what we write? */
sys/dev/netif/ix/ixgbe_common.c
5029
u32 cmd, verify;
sys/dev/netif/ix/ixgbe_common.c
5044
verify = BYPASS_PAGE_CTL0;
sys/dev/netif/ix/ixgbe_common.c
5049
if (ixgbe_bypass_rw_generic(hw, verify, &by_ctl))
sys/dev/raid/vinum/vinumio.h
86
int verify; /* verify (initsd, rebuildparity) */
sys/dev/raid/vinum/vinumrevive.c
496
initsd(int sdno, int verify)
sys/dev/raid/vinum/vinumrevive.c
539
if ((error == 0) && verify) { /* check that it got there */
sys/dev/raid/vinum/vinumstate.c
886
ioctl_reply->error = initsd(objindex, data->verify); /* initialize another block */
sys/platform/pc64/x86_64/busdma_machdep.c
452
check_kmalloc(bus_dma_tag_t dmat, const void *vaddr0, int verify)
sys/platform/pc64/x86_64/busdma_machdep.c
458
if (verify)
sys/platform/pc64/x86_64/busdma_machdep.c
463
if (verify)
sys/platform/vkernel64/platform/busdma_machdep.c
395
check_kmalloc(bus_dma_tag_t dmat, const void *vaddr0, int verify)
sys/platform/vkernel64/platform/busdma_machdep.c
402
if (verify)
sys/platform/vkernel64/platform/busdma_machdep.c
408
if (verify)
tools/regression/lib/libc-regex/testregex.c
1696
state.verify = state.passed;
tools/regression/lib/libc-regex/testregex.c
1781
if (state.passed == state.verify && i > 1)
tools/regression/lib/libc-regex/testregex.c
1785
else if (state.passed > state.verify)
tools/regression/lib/libc-regex/testregex.c
1790
if (state.passed == state.verify)
tools/regression/lib/libc-regex/testregex.c
1792
state.passed = state.verify;
tools/regression/lib/libc-regex/testregex.c
562
int verify;
tools/tools/net80211/wlaninject/wlaninject.c
530
char *verify = NULL;
tools/tools/net80211/wlaninject/wlaninject.c
726
verify = optarg;
tools/tools/net80211/wlaninject/wlaninject.c
759
if (verify) {
tools/tools/net80211/wlaninject/wlaninject.c
760
setup_if(verify, chan);
tools/tools/net80211/wlaninject/wlaninject.c
761
fd2 = open_bpf(verify);
tools/tools/net80211/wlaninject/wlaninject.c
765
if (verify) {
tools/tools/net80211/wlaninject/wlaninject.c
774
printf("Verifying via %s\n", verify);
usr.bin/chpass/edit.c
60
static struct passwd *verify(const char *tfn, struct passwd *pw);
usr.bin/chpass/edit.c
80
if ((npw = verify(tfn, pw)) != NULL)
usr.bin/tcopy/tcopy.c
130
verify(inp, outp, buff);
usr.bin/tcopy/tcopy.c
212
verify(inp, outp, buff);
usr.bin/tcopy/tcopy.c
60
static void verify(int, int, char *);
usr.sbin/fdformat/fdformat.c
231
int fill = 0xf6, quiet = 0, verify = 1, verify_only = 0, confirm = 0;
usr.sbin/fdformat/fdformat.c
290
verify = 0;
usr.sbin/fdformat/fdformat.c
294
verify = 1;
usr.sbin/fdformat/fdformat.c
395
if (verify) {
usr.sbin/mtree/extern.h
74
int verify(FILE *);
usr.sbin/mtree/mtree.c
296
status = verify(spec1);
usr.sbin/rwhod/rwhod.c
148
static int verify(char *, int);
usr.sbin/rwhod/rwhod.c
345
if (!verify(wd.wd_hostname, sizeof wd.wd_hostname)) {
usr.sbin/ypbind/ypbind.c
105
int verify(struct in_addr);
usr.sbin/ypbind/ypbind.c
620
if (yp_restricted && verify(addr->sin_addr)) {