Symbol: digest_init
usr/src/lib/pkcs11/pkcs11_kernel/common/kernelDigest.c
100
digest_init.di_mech.cm_param_len = pMechanism->ulParameterLen;
usr/src/lib/pkcs11/pkcs11_kernel/common/kernelDigest.c
102
digest_init.di_mech.cm_param_len = 0;
usr/src/lib/pkcs11/pkcs11_kernel/common/kernelDigest.c
104
while ((r = ioctl(kernel_fd, CRYPTO_DIGEST_INIT, &digest_init)) < 0) {
usr/src/lib/pkcs11/pkcs11_kernel/common/kernelDigest.c
111
rv = crypto2pkcs11_error_number(digest_init.di_return_value);
usr/src/lib/pkcs11/pkcs11_kernel/common/kernelDigest.c
43
crypto_digest_init_t digest_init;
usr/src/lib/pkcs11/pkcs11_kernel/common/kernelDigest.c
89
digest_init.di_session = session_p->k_session;
usr/src/lib/pkcs11/pkcs11_kernel/common/kernelDigest.c
92
digest_init.di_mech.cm_type = k_mech_type;
usr/src/lib/pkcs11/pkcs11_kernel/common/kernelDigest.c
93
digest_init.di_mech.cm_param = pMechanism->pParameter;
usr/src/test/crypto-tests/tests/common/cryptotest.h
101
int digest_init(crypto_op_t *op);
usr/src/test/crypto-tests/tests/common/testfuncs.c
55
.tf_init = digest_init,
usr/src/uts/common/crypto/io/crypto.c
3285
STRUCT_DECL(crypto_digest_init, digest_init);
usr/src/uts/common/crypto/io/crypto.c
3297
STRUCT_INIT(digest_init, mode);
usr/src/uts/common/crypto/io/crypto.c
3304
if (copyin(arg, STRUCT_BUF(digest_init),
usr/src/uts/common/crypto/io/crypto.c
3305
STRUCT_SIZE(digest_init)) != 0) {
usr/src/uts/common/crypto/io/crypto.c
3312
session_id = STRUCT_FGET(digest_init, di_session);
usr/src/uts/common/crypto/io/crypto.c
3318
if (!copyin_mech(mode, sp, STRUCT_FADDR(digest_init, di_mech), &mech,
usr/src/uts/common/crypto/io/crypto.c
3353
STRUCT_FSET(digest_init, di_return_value, rv);
usr/src/uts/common/crypto/io/crypto.c
3354
if (copyout(STRUCT_BUF(digest_init), arg,
usr/src/uts/common/crypto/io/crypto.c
3355
STRUCT_SIZE(digest_init)) != 0) {
usr/src/uts/common/crypto/io/crypto.c
682
if (digest_ops->digest_init != NULL)
usr/src/uts/common/crypto/io/crypto.c
6821
return (digest_init(dev, ARG, mode, rval));
usr/src/uts/common/sys/crypto/impl.h
644
(KCF_PROV_DIGEST_OPS(pd) && KCF_PROV_DIGEST_OPS(pd)->digest_init) ? \
usr/src/uts/common/sys/crypto/impl.h
645
KCF_PROV_DIGEST_OPS(pd)->digest_init(ctx, mech, req) : \
usr/src/uts/common/sys/crypto/spi.h
152
int (*digest_init)(crypto_ctx_t *, crypto_mechanism_t *,