Searched refs:encrypt_final (Results 1 – 8 of 8) sorted by relevance
/illumos-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/ |
H A D | kernelEncrypt.c | 431 crypto_encrypt_final_t encrypt_final; in C_EncryptFinal() local 459 encrypt_final.ef_session = session_p->k_session; in C_EncryptFinal() 463 encrypt_final.ef_encrlen = *pulLastEncryptedPartLen; in C_EncryptFinal() 464 encrypt_final.ef_encrbuf = (char *)pLastEncryptedPart; in C_EncryptFinal() 467 &encrypt_final)) < 0) { in C_EncryptFinal() 474 rv = crypto2pkcs11_error_number(encrypt_final.ef_return_value); in C_EncryptFinal() 478 *pulLastEncryptedPartLen = encrypt_final.ef_encrlen; in C_EncryptFinal()
|
/illumos-gate/usr/src/test/crypto-tests/tests/common/ |
H A D | cryptotest.h | 82 int encrypt_final(crypto_op_t *op, size_t encrlen);
|
H A D | testfuncs.c | 47 .tf_final = encrypt_final
|
H A D | cryptotest_pkcs.c | 340 encrypt_final(crypto_op_t *op, size_t encrlen) in encrypt_final() function
|
H A D | cryptotest_kcf.c | 309 encrypt_final(crypto_op_t *op, size_t encrlen) in encrypt_final() function
|
/illumos-gate/usr/src/uts/common/crypto/io/ |
H A D | crypto.c | 697 if (cipher_ops->encrypt_final != NULL) in crypto_build_function_list() 3079 encrypt_final(dev_t dev, caddr_t arg, int mode, int *rval) in encrypt_final() function 3099 STRUCT_DECL(crypto_encrypt_final, encrypt_final); in common_final() 3111 STRUCT_INIT(encrypt_final, mode); in common_final() 3118 if (copyin(arg, STRUCT_BUF(encrypt_final), in common_final() 3119 STRUCT_SIZE(encrypt_final)) != 0) { in common_final() 3127 encrlen = STRUCT_FGET(encrypt_final, ef_encrlen); in common_final() 3133 encrbuf = STRUCT_FGETP(encrypt_final, ef_encrbuf); in common_final() 3145 session_id = STRUCT_FGET(encrypt_final, ef_session); in common_final() 3189 STRUCT_FSET(encrypt_final, ef_encrlen, in common_final() [all …]
|
/illumos-gate/usr/src/uts/common/sys/crypto/ |
H A D | spi.h | 180 int (*encrypt_final)(crypto_ctx_t *, member
|
H A D | impl.h | 692 (KCF_PROV_CIPHER_OPS(pd) && KCF_PROV_CIPHER_OPS(pd)->encrypt_final) ? \ 693 KCF_PROV_CIPHER_OPS(pd)->encrypt_final(ctx, ciphertext, req) : \
|