HomeSort by relevance Sort by last modified time
    Searched refs:decrypt (Results 1 - 25 of 48) sorted by null

1 2

  /onnv/onnv-gate/usr/src/common/net/wanboot/crypt/
des.h 46 int decrypt);
cbc.h 44 void (*decrypt)(void *, uint8_t *); member in struct:cbc_handle_s
54 void (*decrypt)(void *, uint8_t *));
cbc.c 113 /* Decrypt the current block. */
114 ch->decrypt(ch->ks, thisp);
130 void (*decrypt)(void *, uint8_t *))
137 ch->decrypt = decrypt;
  /onnv/onnv-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/
kernelDecrypt.c 67 session_p->decrypt.flags = CRYPTO_OPERATION_ACTIVE;
99 session_p->decrypt.mech = *pMechanism;
102 if (INPLACE_MECHANISM(session_p->decrypt.mech.mechanism)) {
103 session_p->decrypt.flags |= CRYPTO_OPERATION_INPLACE_OK;
139 session_p->decrypt.flags &= ~CRYPTO_OPERATION_ACTIVE;
185 * Real decrypt work. The caller doesn't hold the session lock.
191 crypto_decrypt_t decrypt; local
201 if (!(session_p->decrypt.flags & CRYPTO_OPERATION_ACTIVE)) {
210 if (session_p->decrypt.flags & CRYPTO_OPERATION_UPDATE) {
213 * operation, so we'll leave the active decrypt operatio
    [all...]
kernelSession.h 97 crypto_active_op_t decrypt; /* context of active decrypt op */ member in struct:session
kernelSessionUtil.c 309 if (session_p->decrypt.context != NULL)
310 free(session_p->decrypt.context);
  /onnv/onnv-gate/usr/src/cmd/cmd-crypto/decrypt/
Makefile.com 28 PROG = decrypt
33 OBJS = decrypt.o
Makefile 28 PROG= decrypt
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/raw/
raw_decrypt.c 45 return((*(enc->decrypt))(context, key, ivec, input, output));
  /onnv/onnv-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
softDecryptUtil.c 79 * decrypt init routine based on the mechanism.
151 soft_des_ctx = (soft_des_ctx_t *)session_p->decrypt.context;
165 free(session_p->decrypt.context);
166 session_p->decrypt.context = NULL;
206 soft_aes_ctx = (soft_aes_ctx_t *)session_p->decrypt.context;
221 free(session_p->decrypt.context);
222 session_p->decrypt.context = NULL;
252 soft_aes_ctx = (soft_aes_ctx_t *)session_p->decrypt.context;
261 free(session_p->decrypt.context);
262 session_p->decrypt.context = NULL
    [all...]
softDecrypt.c 71 /* Check to see if decrypt operation is already active. */
72 if (session_p->decrypt.flags & CRYPTO_OPERATION_ACTIVE) {
82 session_p->decrypt.flags = CRYPTO_OPERATION_ACTIVE;
91 session_p->decrypt.flags &= ~CRYPTO_OPERATION_ACTIVE;
144 if (!(session_p->decrypt.flags & CRYPTO_OPERATION_ACTIVE)) {
153 if (session_p->decrypt.flags & CRYPTO_OPERATION_UPDATE) {
156 * operation, so we'll leave the active decrypt operation
158 * decrypt update operation.
173 * We will not terminate the active decrypt operation flag,
237 if (!(session_p->decrypt.flags & CRYPTO_OPERATION_ACTIVE))
    [all...]
softARCFourCrypt.c 79 active_op = (encrypt) ? &(session_p->encrypt) : &(session_p->decrypt);
softBlowfishCrypt.c 65 session_p->decrypt.context = soft_blowfish_ctx;
66 session_p->decrypt.mech.mechanism = pMechanism->mechanism;
324 (soft_blowfish_ctx_t *)session_p->decrypt.context;
439 /* Decrypt multiple blocks of data. */
448 * For decrypt update, if there is remaining data,
476 free(session_p->decrypt.context);
477 session_p->decrypt.context = NULL;
softKeys.c 269 /* Check if given unwrapping key may be used to decrypt. */
279 * Unwrapping key objects requires calling decrypt operations.
280 * Check to see if decrypt operation is already active.
282 if (session_p->decrypt.flags & CRYPTO_OPERATION_ACTIVE) {
291 session_p->decrypt.flags = CRYPTO_OPERATION_ACTIVE;
306 session_p->decrypt.flags = 0;
softAESCrypt.c 70 session_p->decrypt.context = soft_aes_ctx;
71 session_p->decrypt.mech.mechanism = pMechanism->mechanism;
480 * This function calls the corresponding decrypt routine based
489 * CKR_FUNCTION_FAILED: decrypt function failed
500 (soft_aes_ctx_t *)session_p->decrypt.context;
502 CK_MECHANISM_TYPE mechanism = session_p->decrypt.mech.mechanism;
673 * For decrypt update, if there is a remaining
700 /* Decrypt multiple blocks of data. */
709 /* Decrypt last block containing pad bytes. */
715 /* Decrypt last block containing pad bytes. *
    [all...]
softDESCrypt.c 78 session_p->decrypt.context = soft_des_ctx;
79 session_p->decrypt.mech.mechanism = pMechanism->mechanism;
479 * This function calls the corresponding decrypt routine based
488 * CKR_FUNCTION_FAILED: decrypt function failed
499 (soft_des_ctx_t *)session_p->decrypt.context;
501 CK_MECHANISM_TYPE mechanism = session_p->decrypt.mech.mechanism;
678 * For decrypt update, if there is remaining
706 /* Decrypt multiple blocks of data. */
715 /* Decrypt last block containing pad bytes. */
721 /* Decrypt last block containing pad bytes. *
    [all...]
softSession.h 94 crypto_active_op_t decrypt; /* context of active decrypt op */ member in struct:session
  /onnv/onnv-gate/usr/src/cmd/cmd-crypto/
Makefile 29 decrypt \
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/
decrypt.c 72 return((*(krb5_enctypes_list[i].decrypt))
  /onnv/onnv-gate/usr/src/common/crypto/modes/
cbc.c 171 int (*decrypt)(const void *, const uint8_t *, uint8_t *),
220 decrypt(ctx->cbc_keysched, blockp,
224 decrypt(ctx->cbc_keysched, blockp, blockp);
  /onnv/onnv-gate/usr/src/lib/libcryptoutil/
README 106 digest(1), mac(1), encrypt(1), decrypt(1) for translating
186 encrypt(1), decrypt(1), and libpkcs11(3crypto) for getting
199 encrypt(1) and decrypt(1) uses this function for reporting errors.
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/old/
old_decrypt.c 78 /* decrypt it */
80 /* save last ciphertext block in case we decrypt in place */
98 if ((ret = ((*(enc->decrypt))(context, key, ivec, input, &output))))
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/
in.telnetd.c 461 /* Decode, decrypt and store the forwarded creds in the local ccache. */
761 encrypt_session_key(&skey, &encr_data.decrypt);
1004 (void) memset(&encr_data.decrypt, 0, sizeof (cipher_info_t));
1007 encr_data.decrypt.state = ENCR_STATE_NOT_READY;
1029 * decrypt key we will use so that it may
1032 (void) memcpy(p, encr_data.decrypt.keyid, encr_data.decrypt.keyidlen);
1033 p += encr_data.decrypt.keyidlen;
1051 * We must initialize the read (decrypt) side of our connection
1088 encr_data.decrypt.type = type
    [all...]
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWcsu/
prototype_sparc 51 f none usr/bin/sparcv7/decrypt 555 root bin
53 l none usr/bin/sparcv7/encrypt=decrypt
58 f none usr/bin/sparcv9/decrypt 555 root bin
60 l none usr/bin/sparcv9/encrypt=decrypt
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/dk/
dk_decrypt.c 121 /* decrypt the ciphertext */
129 if ((ret = ((*(enc->decrypt))(context, derived_encr_key,

Completed in 780 milliseconds

1 2