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

123

/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dmbsinit.c23 #include "verify.h"
39 verify (sizeof (mbstate_t) >= 4);
H A Dsleep.c25 #include "verify.h"
58 verify (UINT_MAX / 49 / 24 / 60 / 60);
H A Dverify.h29 integer constant expression contexts. verify (R) is for declaration
52 the verify macro:
54 void function (int n) { verify (n < 0); }
56 * For the verify macro, the struct verify_type__ will need to
68 two uses of the verify macro would yield colliding declarations
76 But this has the problem that two invocations of verify from
119 # define verify(R) [another version to keep GCC happy]
160 # define verify(R) \ macro
/osnet-11/usr/src/lib/brand/solaris10/zone/
H A Dverify_cfg.ksh34 /usr/lib/brand/solaris10/s10_support verify "$@"
/osnet-11/usr/src/lib/pkcs11/pkcs11_kernel/common/
H A DkernelVerify.c82 * C_Verify or C_VerifyFinal to verify a signature on data.
84 session_p->verify.flags = CRYPTO_OPERATION_ACTIVE;
146 session_p->verify.flags |= CRYPTO_EMULATE;
166 session_p->verify.flags &= ~CRYPTO_OPERATION_ACTIVE;
185 crypto_verify_t verify; local
200 if (!(session_p->verify.flags & CRYPTO_OPERATION_ACTIVE)) {
209 if (session_p->verify.flags & CRYPTO_OPERATION_UPDATE) {
212 * operation, so we'll leave the active verify operation
214 * verify update operation.
220 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.c75 ((opflag & OP_SIGN) ? &(session_p->sign) : &(session_p->verify));
114 * a standby context. The opflag tells if this is a sign or verify.
127 opp = (opflag & OP_SIGN) ? &(session_p->sign) : &(session_p->verify);
149 * The opflag tells if this is a digest, sign or verify.
166 &(session_p->sign) : &(session_p->verify);
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftVerify.c71 /* Check to see if verify operation is already active. */
72 if (session_p->verify.flags & CRYPTO_OPERATION_ACTIVE) {
79 * C_Verify or C_VerifyFinal to verify a signature on data.
81 session_p->verify.flags = CRYPTO_OPERATION_ACTIVE;
90 session_p->verify.flags &= ~CRYPTO_OPERATION_ACTIVE;
128 if (!(session_p->verify.flags & CRYPTO_OPERATION_ACTIVE)) {
137 if (session_p->verify.flags & CRYPTO_OPERATION_UPDATE) {
140 * operation, so we'll leave the active verify operation
142 * verify update operation.
195 if (!(session_p->verify
[all...]
H A DsoftVerifyUtil.c50 * verify init routine based on the mechanism.
127 * verify routine based on the mechanism.
136 CK_MECHANISM_TYPE mechanism = session_p->verify.mech.mechanism;
166 hmac_ctx = (soft_hmac_ctx_t *)session_p->verify.context;
191 des_ctx = (soft_des_ctx_t *)session_p->verify.context;
262 * verify update routine based on the mechanism.
269 CK_MECHANISM_TYPE mechanism = session_p->verify.mech.mechanism;
331 * verify final routine based on the mechanism.
339 CK_MECHANISM_TYPE mechanism = session_p->verify.mech.mechanism;
367 hmac_ctx = (soft_hmac_ctx_t *)session_p->verify
[all...]
H A DsoftMAC.c175 session_p->verify.mech.mechanism = pMechanism->mechanism;
176 session_p->verify.context = hmac_ctx;
531 hmac_ctx = (soft_hmac_ctx_t *)session_p->verify.context;
532 mechanism = session_p->verify.mech.mechanism;
618 bzero(session_p->verify.context, sizeof (soft_hmac_ctx_t));
619 free(session_p->verify.context);
620 session_p->verify.context = NULL;
645 hmac_ctx = (soft_hmac_ctx_t *)session_p->verify.context;
646 mechanism = session_p->verify.mech.mechanism;
H A DsoftSessionUtil.c377 if (session_p->verify.context != NULL)
378 free(session_p->verify.context);
461 /* Check to see if verify operation is active. */
462 if (session_p->verify.flags & CRYPTO_OPERATION_ACTIVE) {
825 session_p->verify.context = pContext;
826 session_p->verify.mech.mechanism = pMechanism->mechanism;
864 active_op = &(session_p->verify);
902 active_op = &(session_p->verify);
941 active_op = &(session_p->verify);
H A DsoftEC.c336 * Allocate a ECC context for the active sign or verify operation.
418 session_p->verify.context = ecc_ctx;
419 session_p->verify.mech.mechanism = pMechanism->mechanism;
544 soft_ecc_ctx_t *ecc_ctx = session_p->verify.context;
596 soft_free_ecc_context(session_p->verify.context);
597 session_p->verify.context = NULL;
620 soft_free_ecc_context(session_p->verify.context);
621 session_p->verify.context = NULL;
628 * Now, we are ready to verify the data using signature.
H A DsoftRSA.c407 * Allocate a RSA context for the active sign or verify operation.
501 session_p->verify.context = rsa_ctx;
502 session_p->verify.mech.mechanism = pMechanism->mechanism;
647 soft_rsa_ctx_t *rsa_ctx = session_p->verify.context;
736 free(session_p->verify.context);
737 session_p->verify.context = NULL;
1106 soft_rsa_ctx_t *rsa_ctx = session_p->verify.context;
1172 * Now, we are ready to verify the DER_ENCODED data using signature.
1195 soft_rsa_ctx_t *rsa_ctx = session_p->verify.context;
1196 CK_MECHANISM_TYPE mechanism = session_p->verify
[all...]
/osnet-11/usr/src/lib/libparted/common/lib/
H A Dverify.h29 integer constant expression contexts. verify (R) is for declaration
52 the verify macro:
54 void function (int n) { verify (n < 0); }
56 * For the verify macro, the struct verify_type__ will need to
68 two uses of the verify macro would yield colliding declarations
76 But this has the problem that two invocations of verify from
119 # define verify(R) [another version to keep GCC happy]
160 # define verify(R) \ macro
H A Dargmatch.h27 # include "verify.h"
35 verify (ARRAY_CARDINALITY (Arglist) == ARRAY_CARDINALITY (Vallist) + 1)
/osnet-11/usr/src/lib/fm/topo/modules/common/ses/common/
H A Dses.h99 #define verify(x) assert(x) macro
101 #define verify(x) ((void)(x)) macro
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/DProf/t/
H A DDProf.t65 sub verify { subroutine
85 verify $test;
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_vdev.c534 verify(nvlist_alloc(&vdev, NV_UNIQUE_NAME, 0) == 0);
535 verify(nvlist_add_string(vdev, ZPOOL_CONFIG_PATH, path) == 0);
536 verify(nvlist_add_string(vdev, ZPOOL_CONFIG_TYPE, type) == 0);
537 verify(nvlist_add_uint64(vdev, ZPOOL_CONFIG_IS_LOG, is_log) == 0);
539 verify(nvlist_add_uint64(vdev, ZPOOL_CONFIG_WHOLE_DISK,
571 verify(nvlist_add_string(vdev,
575 verify(nvlist_add_string(vdev,
579 verify(nvlist_add_string(vdev,
610 verify(nvlist_add_string(vdev,
627 * Go through and verify th
[all...]
H A Dlibzfs_status.c121 verify(nvlist_lookup_string(vdev, ZPOOL_CONFIG_TYPE,
130 verify(nvlist_lookup_uint64_array(vdev, ZPOOL_CONFIG_VDEV_STATS,
170 verify(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
182 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_VERSION,
184 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_STATE,
H A Dlibzfs_import.c155 verify(nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &guid) == 0);
361 verify(nvlist_lookup_uint64(zhp->zpool_config, ZPOOL_CONFIG_POOL_GUID,
509 verify(nvlist_add_uint64(config,
518 verify(nvlist_add_uint64_array(config,
538 verify(nvlist_lookup_uint64(tmp,
543 verify(nvlist_lookup_uint64(tmp,
548 verify(nvlist_lookup_string(tmp,
553 verify(nvlist_lookup_uint64(tmp,
564 verify(nvlist_lookup_string(tmp,
579 verify(nvlist_lookup_nvlis
[all...]
H A Dlibzfs_config.c185 verify(nvpair_value_nvlist(elem, &child) == 0);
192 verify(uu_avl_find(hdl->libzfs_ns_avl, cn, NULL, &where)
273 verify(nvlist_lookup_uint64(zhp->zpool_config,
275 verify(nvlist_lookup_uint64(config,
H A Dlibzfs_pool.c126 verify(nvlist_lookup_uint64(nv, ZPROP_SOURCE, &ival) == 0);
128 verify(nvlist_lookup_string(nv, ZPROP_VALUE, &value) == 0);
166 verify(nvlist_lookup_uint64(nv, ZPROP_SOURCE, &value) == 0);
168 verify(nvlist_lookup_uint64(nv, ZPROP_VALUE, &value) == 0);
291 verify(nvlist_lookup_nvlist(zpool_get_config(zhp, NULL),
604 verify(nvlist_lookup_nvlist(zpool_get_config(zhp, NULL),
1169 verify((zhp = zfs_open(hdl, pool, ZFS_TYPE_DATASET)) != NULL);
1170 verify(zfs_prop_set(zhp, zfs_prop_to_name(ZFS_PROP_MOUNTPOINT),
1605 verify(nvlist_lookup_string(config, ZPOOL_CONFIG_POOL_NAME,
1607 verify(nvlist_lookup_uint6
[all...]
/osnet-11/usr/src/lib/libpkg/
H A DMakefile.com39 verify.o security.o pkgweb.o \
/osnet-11/usr/src/lib/sun_sas/
H A DMakefile.com35 verify.o \
/osnet-11/usr/src/lib/libast/common/misc/
H A Dfindlib.h115 int verify; \

Completed in 69 milliseconds

123