| /onnv-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/ |
| H A D | kernelVerify.c | 85 session_p->verify.flags = CRYPTO_OPERATION_ACTIVE; in C_VerifyInit() 147 session_p->verify.flags |= CRYPTO_EMULATE; in C_VerifyInit() 167 session_p->verify.flags &= ~CRYPTO_OPERATION_ACTIVE; in C_VerifyInit() 186 crypto_verify_t verify; in C_Verify() local 201 if (!(session_p->verify.flags & CRYPTO_OPERATION_ACTIVE)) { in C_Verify() 210 if (session_p->verify.flags & CRYPTO_OPERATION_UPDATE) { in C_Verify() 221 if (session_p->verify.flags & CRYPTO_EMULATE) { in C_Verify() 224 session_p->verify.flags |= CRYPTO_EMULATE_USING_SW; in C_Verify() 228 rv = do_soft_hmac_verify(get_spp(&session_p->verify), in C_Verify() 233 free_soft_ctx(get_sp(&session_p->verify), OP_VERIFY); in C_Verify() [all …]
|
| H A D | kernelSoftCommon.c | 205 hmac_ctx = (soft_hmac_ctx_t *)session_p->verify.context; in do_soft_hmac_verify() 244 if (session_p->verify.context == NULL) in free_soft_ctx() 246 bzero(session_p->verify.context, sizeof (soft_hmac_ctx_t)); in free_soft_ctx() 247 free(session_p->verify.context); in free_soft_ctx() 248 session_p->verify.context = NULL; in free_soft_ctx() 249 session_p->verify.flags = 0; in free_soft_ctx()
|
| /onnv-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/ |
| H A D | softVerify.c | 73 if (session_p->verify.flags & CRYPTO_OPERATION_ACTIVE) { in C_VerifyInit() 82 session_p->verify.flags = CRYPTO_OPERATION_ACTIVE; in C_VerifyInit() 91 session_p->verify.flags &= ~CRYPTO_OPERATION_ACTIVE; in C_VerifyInit() 129 if (!(session_p->verify.flags & CRYPTO_OPERATION_ACTIVE)) { in C_Verify() 138 if (session_p->verify.flags & CRYPTO_OPERATION_UPDATE) { in C_Verify() 196 if (!(session_p->verify.flags & CRYPTO_OPERATION_ACTIVE)) { in C_VerifyUpdate() 201 session_p->verify.flags |= CRYPTO_OPERATION_UPDATE; in C_VerifyUpdate() 245 if (!(session_p->verify.flags & CRYPTO_OPERATION_ACTIVE)) { in C_VerifyFinal() 301 if (session_p->verify.flags & CRYPTO_OPERATION_ACTIVE) { in C_VerifyRecoverInit() 310 session_p->verify.flags = CRYPTO_OPERATION_ACTIVE; in C_VerifyRecoverInit() [all …]
|
| H A D | softVerifyUtil.c | 135 CK_MECHANISM_TYPE mechanism = session_p->verify.mech.mechanism; in soft_verify() 157 hmac_ctx = (soft_hmac_ctx_t *)session_p->verify.context; in soft_verify() 182 des_ctx = (soft_des_ctx_t *)session_p->verify.context; in soft_verify() 259 CK_MECHANISM_TYPE mechanism = session_p->verify.mech.mechanism; in soft_verify_update() 326 CK_MECHANISM_TYPE mechanism = session_p->verify.mech.mechanism; in soft_verify_final() 348 hmac_ctx = (soft_hmac_ctx_t *)session_p->verify.context; in soft_verify_final() 373 des_ctx = (soft_des_ctx_t *)session_p->verify.context; in soft_verify_final() 443 CK_MECHANISM_TYPE mechanism = session_p->verify.mech.mechanism; in soft_verify_recover()
|
| /onnv-gate/usr/src/cmd/zpool/ |
| H A D | zpool_vdev.c | 470 verify(nvlist_alloc(&vdev, NV_UNIQUE_NAME, 0) == 0); in make_leaf_vdev() 471 verify(nvlist_add_string(vdev, ZPOOL_CONFIG_PATH, path) == 0); in make_leaf_vdev() 472 verify(nvlist_add_string(vdev, ZPOOL_CONFIG_TYPE, type) == 0); in make_leaf_vdev() 473 verify(nvlist_add_uint64(vdev, ZPOOL_CONFIG_IS_LOG, is_log) == 0); in make_leaf_vdev() 475 verify(nvlist_add_uint64(vdev, ZPOOL_CONFIG_WHOLE_DISK, in make_leaf_vdev() 500 verify(nvlist_add_string(vdev, in make_leaf_vdev() 556 verify(nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_CHILDREN, in get_replication() 573 verify(nvlist_lookup_string(nv, ZPOOL_CONFIG_TYPE, in get_replication() 599 verify(nvlist_lookup_uint64(nv, in get_replication() 625 verify(nvlist_lookup_string(cnv, in get_replication() [all …]
|
| /onnv-gate/usr/src/common/openssl/crypto/ui/ |
| H A D | ui_compat.c | 59 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify) in _ossl_old_des_read_pw_string() argument 61 return UI_UTIL_read_pw_string(buf, length, prompt, verify); in _ossl_old_des_read_pw_string() 64 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) in _ossl_old_des_read_pw() argument 66 return UI_UTIL_read_pw(buf, buff, size, prompt, verify); in _ossl_old_des_read_pw()
|
| H A D | ui_util.c | 59 int UI_UTIL_read_pw_string(char *buf,int length,const char *prompt,int verify) in UI_UTIL_read_pw_string() argument 64 ret=UI_UTIL_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify); in UI_UTIL_read_pw_string() 69 int UI_UTIL_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) in UI_UTIL_read_pw() argument 81 if (ok >= 0 && verify) in UI_UTIL_read_pw()
|
| H A D | ui_compat.h | 77 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify); 78 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify);
|
| /onnv-gate/usr/src/common/openssl/crypto/des/ |
| H A D | read2pwd.c | 117 int DES_read_password(DES_cblock *key, const char *prompt, int verify) in DES_read_password() argument 122 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0) in DES_read_password() 130 int verify) in DES_read_2passwords() argument 135 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0) in DES_read_2passwords()
|
| H A D | read_pwd.c | 217 int verify) in des_read_pw_string() argument 222 ret=des_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify); in des_read_pw_string() 229 int des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify) in des_read_pw() argument 238 int des_read_pw(char *buf, char *buff, int size, char *prompt, int verify) in des_read_pw() argument 260 int verify) in des_read_pw() argument 371 if (verify) in des_read_pw()
|
| /onnv-gate/usr/src/lib/libzfs/common/ |
| H A D | libzfs_import.c | 154 verify(nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &guid) == 0); in fix_paths() 360 verify(nvlist_lookup_uint64(zhp->zpool_config, ZPOOL_CONFIG_POOL_GUID, in pool_active() 506 verify(nvlist_add_uint64(config, in get_configs() 515 verify(nvlist_add_uint64_array(config, in get_configs() 535 verify(nvlist_lookup_uint64(tmp, in get_configs() 540 verify(nvlist_lookup_uint64(tmp, in get_configs() 545 verify(nvlist_lookup_string(tmp, in get_configs() 550 verify(nvlist_lookup_uint64(tmp, in get_configs() 561 verify(nvlist_lookup_string(tmp, in get_configs() 576 verify(nvlist_lookup_nvlist(tmp, in get_configs() [all …]
|
| H A D | libzfs_pool.c | 120 verify(nvlist_lookup_uint64(nv, ZPROP_SOURCE, &ival) == 0); in zpool_get_prop_string() 122 verify(nvlist_lookup_string(nv, ZPROP_VALUE, &value) == 0); in zpool_get_prop_string() 160 verify(nvlist_lookup_uint64(nv, ZPROP_SOURCE, &value) == 0); in zpool_get_prop_int() 162 verify(nvlist_lookup_uint64(nv, ZPROP_VALUE, &value) == 0); in zpool_get_prop_int() 288 verify(nvlist_lookup_nvlist(zpool_get_config(zhp, NULL), in zpool_get_prop() 290 verify(nvlist_lookup_uint64_array(nvroot, in zpool_get_prop() 469 verify(nvlist_lookup_nvlist(zpool_get_config(zhp, NULL), in zpool_valid_proplist() 991 verify((zhp = zfs_open(hdl, pool, ZFS_TYPE_DATASET)) != NULL); in zpool_create() 992 verify(zfs_prop_set(zhp, zfs_prop_to_name(ZFS_PROP_MOUNTPOINT), in zpool_create() 1433 verify(nvlist_lookup_string(config, ZPOOL_CONFIG_POOL_NAME, in zpool_import_props() [all …]
|
| H A D | libzfs_status.c | 130 verify(nvlist_lookup_string(vdev, ZPOOL_CONFIG_TYPE, &type) == 0); in find_vdev_problem() 140 verify(nvlist_lookup_uint64_array(vdev, ZPOOL_CONFIG_VDEV_STATS, in find_vdev_problem() 183 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_VERSION, in check_status() 185 verify(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, in check_status() 187 verify(nvlist_lookup_uint64_array(nvroot, ZPOOL_CONFIG_VDEV_STATS, in check_status() 189 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_STATE, in check_status()
|
| /onnv-gate/usr/src/cmd/priocntl/ |
| H A D | subr.c | 315 int verify; in verifyupri() local 384 verify = 0; in verifyupri() 389 verify++; in verifyupri() 394 verify++; in verifyupri() 399 verify++; in verifyupri() 404 verify++; in verifyupri() 409 verify++; in verifyupri() 414 verify++; in verifyupri() 419 verify++; in verifyupri() 424 verify++; in verifyupri() [all …]
|
| /onnv-gate/usr/src/pkg/manifests/ |
| H A D | system-flash-fwflash.mf | 43 dir path=usr/lib/fwflash/verify 50 file path=usr/lib/fwflash/verify/hermon-MELLANOX.so 51 file path=usr/lib/fwflash/verify/sd-GENERIC.so 52 file path=usr/lib/fwflash/verify/ses-SUN.so 53 file path=usr/lib/fwflash/verify/tavor-MELLANOX.so 61 link path=usr/lib/fwflash/verify/ses-LSILOGIC.so target=ses-SUN.so 62 link path=usr/lib/fwflash/verify/sgen-LSILOGIC.so target=ses-SUN.so 63 link path=usr/lib/fwflash/verify/sgen-SUN.so target=ses-SUN.so
|
| /onnv-gate/usr/src/common/openssl/doc/crypto/ |
| H A D | ui_compat.pod | 10 int des_read_password(DES_cblock *key,const char *prompt,int verify); 12 const char *prompt,int verify); 14 int des_read_pw_string(char *buf,int length,const char *prompt,int verify); 15 int des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify); 26 If I<verify> is set, the user is asked for the password twice and unless 34 for you if I<verify> is set.
|
| H A D | PKCS7_verify.pod | 5 PKCS7_verify - verify a PKCS#7 signedData structure 16 structure to verify. B<certs> is a set of certificates in which to search for 22 B<flags> is an optional set of flags, which can be used to modify the verify 31 Normally the verify process proceeds as follows. 44 are used as untrusted CAs. If any chain verify fails an error code is returned. 49 If all signature's verify correctly then the function is successful. 52 to change the default verify behaviour. Only the flag B<PKCS7_NOINTERN> is 66 not used as untrusted CAs. This means that the whole verify chain (apart from 76 certificates supplied in B<certs> then the verify will fail because the 79 Care should be taken when modifying the default verify behaviour, for example
|
| /onnv-gate/usr/src/common/openssl/doc/ssl/ |
| H A D | SSL_set_verify_result.pod | 26 The valid codes for B<verify_result> are documented in L<verify(1)|verify(1)>. 36 L<verify(1)|verify(1)>
|
| H A D | SSL_get_verify_result.pod | 47 Documented in L<verify(1)|verify(1)>. 55 L<verify(1)|verify(1)>
|
| /onnv-gate/usr/src/common/openssl/doc/apps/ |
| H A D | dgst.pod | 18 [B<-verify filename>] 68 =item B<-verify filename> 70 verify the signature using the the public key in "filename". 75 verify the signature using the the private key in "filename". 79 the actual signature to verify. 101 If you wish to sign or verify data using the DSA algorithm then the dss1 107 The signing and verify options should only be used if a single file is
|
| H A D | rsautl.pod | 16 [B<-verify>] 27 The B<rsautl> command can be used to sign, verify, encrypt and decrypt 61 =item B<-verify> 63 verify the input data and output the recovered data. 87 B<-verify> option. 94 used to sign or verify small pieces of data. 104 openssl rsautl -verify -in sig -inkey key.pem 108 openssl rsautl -verify -in file -inkey key.pem -raw -hexdump 159 openssl rsautl -in sig -verify -asn1parse -inkey pubkey.pem -pubin
|
| /onnv-gate/usr/src/cmd/fs.d/ufs/volcopy/ |
| H A D | volcopy.c | 307 int lfdes, altflg = 0, result, verify; in main() local 434 verify = 0; in main() 458 verify = !Otape || (altflg & MINUSS); in main() 459 (void) getoutfs(Out.f_dev, Out.f_des, Sptr, verify); in main() 507 verify = !Otape || (altflg & MINUSS); in main() 508 prompt(verify, in main() 513 verify = !Otape || (altflg & MINUSS); in main() 514 prompt(verify, "arg. (%.6s) doesn't agree with from vol.(%.6s)\n", in main() 526 verify = altflg & MINUSS; in main() 528 prompt(verify, "%s less than 48 hours older than %s\n" in main() [all …]
|
| /onnv-gate/usr/src/cmd/lp/lib/filters/ |
| H A D | insfilter.c | 450 int (*verify)(_FILTER *, void *), in instantiate() 454 instantiate(pline, input, output, verify, criteria) in instantiate() 458 int (*verify)(); 467 ret = _instantiate(&p, input, output, verify, criteria); 497 int (*verify)(_FILTER *, void *), in _instantiate() 501 _instantiate(pp, inputp, outputp, verify, criteria) in _instantiate() 505 int (*verify)(); 538 if ((*verify)(pp->lhead, criteria)) 596 if ((*verify)(pp->lhead, criteria)) 656 rlist, verify,
|
| /onnv-gate/usr/src/common/openssl/crypto/asn1/ |
| H A D | n_pkey.c | 111 int verify), 116 int verify)) in i2d_Netscape_RSA() argument 122 int (*cb)(char *buf, int len, const char *prompt, int verify), in i2d_RSA_NET() argument 235 int verify)) in d2i_Netscape_RSA() argument 241 int (*cb)(char *buf, int len, const char *prompt, int verify), in d2i_RSA_NET() argument 283 int verify), int sgckey) in d2i_RSA_NET_2() argument
|
| /onnv-gate/usr/src/lib/fm/topo/modules/common/ses/ |
| H A D | ses.h | 61 #define verify(x) assert(x) macro 63 #define verify(x) ((void)(x)) macro
|