Searched refs:verify (Results 1 - 25 of 132) sorted by relevance

123456

/opensolaris-onvv-gate/usr/src/common/openssl/crypto/ui/
H A Dui_compat.c59 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify) argument
61 return UI_UTIL_read_pw_string(buf, length, prompt, verify);
64 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
66 return UI_UTIL_read_pw(buf, buff, size, prompt, verify);
H A Dui_util.c59 int UI_UTIL_read_pw_string(char *buf,int length,const char *prompt,int verify) argument
64 ret=UI_UTIL_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
69 int UI_UTIL_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
81 if (ok >= 0 && verify)
H A Dui_compat.h77 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);
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/des/
H A Dread2pwd.c117 int DES_read_password(DES_cblock *key, const char *prompt, int verify) argument
122 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
130 int verify)
135 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
129 DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt, int verify) argument
H A Dread_pwd.c217 int verify)
222 ret=des_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
229 int des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify) argument
238 int des_read_pw(char *buf, char *buff, int size, char *prompt, int verify) argument
260 int verify)
371 if (verify)
216 des_read_pw_string(char *buf, int length, const char *prompt, int verify) argument
259 des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify) argument
/opensolaris-onvv-gate/usr/src/pkg/manifests/
H A Dsystem-flash-fwflash.mf43 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
/opensolaris-onvv-gate/usr/src/stand/lib/ssl/
H A Dstubs.c41 EVP_read_pw_string(char *buf, int len, const char *prompt, int verify) argument
/opensolaris-onvv-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/
H A DkernelVerify.c83 * C_Verify or C_VerifyFinal to verify a signature on data.
85 session_p->verify.flags = CRYPTO_OPERATION_ACTIVE;
147 session_p->verify.flags |= CRYPTO_EMULATE;
167 session_p->verify.flags &= ~CRYPTO_OPERATION_ACTIVE;
186 crypto_verify_t verify; local
201 if (!(session_p->verify.flags & CRYPTO_OPERATION_ACTIVE)) {
210 if (session_p->verify.flags & CRYPTO_OPERATION_UPDATE) {
213 * operation, so we'll leave the active verify operation
215 * verify update operation.
221 if (session_p->verify
[all...]
H A DkernelSoftCommon.c101 * opflag specifies whether this is a sign or verify.
145 * opflag specifies whether this is a sign or verify.
205 hmac_ctx = (soft_hmac_ctx_t *)session_p->verify.context;
244 if (session_p->verify.context == NULL)
246 bzero(session_p->verify.context, sizeof (soft_hmac_ctx_t));
247 free(session_p->verify.context);
248 session_p->verify.context = NULL;
249 session_p->verify.flags = 0;
H A DkernelEmulate.c74 ((opflag & OP_SIGN) ? &(session_p->sign) : &(session_p->verify));
113 * a standby context. The opflag tells if this is a sign or verify.
126 opp = (opflag & OP_SIGN) ? &(session_p->sign) : &(session_p->verify);
148 * The opflag tells if this is a digest, sign or verify.
167 &(session_p->sign) : &(session_p->verify);
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/evp/
H A Dp_verify.c92 if (ctx->digest->verify == NULL)
98 return(ctx->digest->verify(ctx->digest->type,m,m_len,
H A Devp_key.c99 int EVP_read_pw_string(char *buf, int len, const char *prompt, int verify) argument
109 if (verify)
/opensolaris-onvv-gate/usr/src/lib/fm/topo/modules/common/ses/
H A Dses.h61 #define verify(x) assert(x) macro
63 #define verify(x) ((void)(x)) macro
/opensolaris-onvv-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftVerify.c72 /* Check to see if verify operation is already active. */
73 if (session_p->verify.flags & CRYPTO_OPERATION_ACTIVE) {
80 * C_Verify or C_VerifyFinal to verify a signature on data.
82 session_p->verify.flags = CRYPTO_OPERATION_ACTIVE;
91 session_p->verify.flags &= ~CRYPTO_OPERATION_ACTIVE;
129 if (!(session_p->verify.flags & CRYPTO_OPERATION_ACTIVE)) {
138 if (session_p->verify.flags & CRYPTO_OPERATION_UPDATE) {
141 * operation, so we'll leave the active verify operation
143 * verify update operation.
196 if (!(session_p->verify
[all...]
H A DsoftVerifyUtil.c52 * verify init routine based on the mechanism.
126 * verify routine based on the mechanism.
135 CK_MECHANISM_TYPE mechanism = session_p->verify.mech.mechanism;
157 hmac_ctx = (soft_hmac_ctx_t *)session_p->verify.context;
182 des_ctx = (soft_des_ctx_t *)session_p->verify.context;
252 * verify update routine based on the mechanism.
259 CK_MECHANISM_TYPE mechanism = session_p->verify.mech.mechanism;
318 * verify final routine based on the mechanism.
326 CK_MECHANISM_TYPE mechanism = session_p->verify.mech.mechanism;
348 hmac_ctx = (soft_hmac_ctx_t *)session_p->verify
[all...]
/opensolaris-onvv-gate/usr/src/cmd/zpool/
H A Dzpool_vdev.c470 verify(nvlist_alloc(&vdev, NV_UNIQUE_NAME, 0) == 0);
471 verify(nvlist_add_string(vdev, ZPOOL_CONFIG_PATH, path) == 0);
472 verify(nvlist_add_string(vdev, ZPOOL_CONFIG_TYPE, type) == 0);
473 verify(nvlist_add_uint64(vdev, ZPOOL_CONFIG_IS_LOG, is_log) == 0);
475 verify(nvlist_add_uint64(vdev, ZPOOL_CONFIG_WHOLE_DISK,
500 verify(nvlist_add_string(vdev,
517 * Go through and verify the replication level of the pool is consistent.
556 verify(nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_CHILDREN,
573 verify(nvlist_lookup_string(nv, ZPOOL_CONFIG_TYPE,
599 verify(nvlist_lookup_uint6
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/DProf/t/
H A DDProf.t65 sub verify { subroutine
85 verify $test;
/opensolaris-onvv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/
H A Dverify_checksum.c55 /* if there's actually a verify function, call it */
62 krb5_cksumtypes_list[i].keyhash->verify)
63 return((*(krb5_cksumtypes_list[i].keyhash->verify))(
/opensolaris-onvv-gate/usr/src/cmd/priocntl/
H A Dsubr.c315 int verify; local
384 verify = 0;
389 verify++;
394 verify++;
399 verify++;
404 verify++;
409 verify++;
414 verify++;
419 verify++;
424 verify
[all...]
/opensolaris-onvv-gate/usr/src/lib/libzfs/common/
H A Dlibzfs_import.c154 verify(nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &guid) == 0);
360 verify(nvlist_lookup_uint64(zhp->zpool_config, ZPOOL_CONFIG_POOL_GUID,
506 verify(nvlist_add_uint64(config,
515 verify(nvlist_add_uint64_array(config,
535 verify(nvlist_lookup_uint64(tmp,
540 verify(nvlist_lookup_uint64(tmp,
545 verify(nvlist_lookup_string(tmp,
550 verify(nvlist_lookup_uint64(tmp,
561 verify(nvlist_lookup_string(tmp,
576 verify(nvlist_lookup_nvlis
[all...]
H A Dlibzfs_status.c130 verify(nvlist_lookup_string(vdev, ZPOOL_CONFIG_TYPE, &type) == 0);
140 verify(nvlist_lookup_uint64_array(vdev, ZPOOL_CONFIG_VDEV_STATS,
183 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_VERSION,
185 verify(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
187 verify(nvlist_lookup_uint64_array(nvroot, ZPOOL_CONFIG_VDEV_STATS,
189 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_STATE,
/opensolaris-onvv-gate/usr/src/cmd/fs.d/ufs/volcopy/
H A Dvolcopy.c307 int lfdes, altflg = 0, result, verify; local
434 verify = 0;
458 verify = !Otape || (altflg & MINUSS);
459 (void) getoutfs(Out.f_dev, Out.f_des, Sptr, verify);
507 verify = !Otape || (altflg & MINUSS);
508 prompt(verify,
513 verify = !Otape || (altflg & MINUSS);
514 prompt(verify, "arg. (%.6s) doesn't agree with from vol.(%.6s)\n",
526 verify = altflg & MINUSS;
528 prompt(verify, "
827 prompt(int verify, const char *fmt, ...) argument
1230 int again = 1, verify, old_style, new_style; local
1403 int verify; local
1656 getoutfs(int dev, int fd, char *buf, int verify) argument
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/asn1/
H A Dn_pkey.c111 int verify),
116 int verify))
122 int (*cb)(char *buf, int len, const char *prompt, int verify),
235 int verify))
241 int (*cb)(char *buf, int len, const char *prompt, int verify),
283 int verify), int sgckey)
114 i2d_Netscape_RSA(const RSA *a, unsigned char **pp, int (*cb)(char *buf, int len, const char *prompt, int verify)) argument
121 i2d_RSA_NET(const RSA *a, unsigned char **pp, int (*cb)(char *buf, int len, const char *prompt, int verify), int sgckey) argument
233 d2i_Netscape_RSA(RSA **a, const unsigned char **pp, long length, int (*cb)(char *buf, int len, const char *prompt, int verify)) argument
240 d2i_RSA_NET(RSA **a, const unsigned char **pp, long length, int (*cb)(char *buf, int len, const char *prompt, int verify), int sgckey) argument
281 d2i_RSA_NET_2(RSA **a, ASN1_OCTET_STRING *os, int (*cb)(char *buf, int len, const char *prompt, int verify), int sgckey) argument
/opensolaris-onvv-gate/usr/src/cmd/fwflash/
H A DMakefile.com37 ROOTUSRLIBFWFLASHVRF= $(ROOTUSRLIBFWFLASH)/verify
/opensolaris-onvv-gate/usr/src/cmd/power/
H A Dpmconfig.h95 extern int verify;

Completed in 310 milliseconds

123456