Home
last modified time | relevance | path

Searched refs:ulOldPinLen (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftSlotToken.c513 CK_ULONG ulOldPinLen, CK_UTF8CHAR_PTR pNewPin, CK_ULONG ulNewPinLen) in C_SetPIN() argument
536 if ((ulOldPinLen < MIN_PIN_LEN) || (ulOldPinLen > MAX_PIN_LEN) || in C_SetPIN()
557 rv = soft_setpin(pOldPin, ulOldPinLen, pNewPin, ulNewPinLen); in C_SetPIN()
H A DsoftKeystore.h110 CK_RV soft_setpin(CK_UTF8CHAR_PTR pOldPin, CK_ULONG ulOldPinLen,
H A DsoftKeystore.c216 soft_setpin(CK_UTF8CHAR_PTR pOldPin, CK_ULONG ulOldPinLen, in soft_setpin() argument
248 tmp_old_pin = malloc(ulOldPinLen + 1); in soft_setpin()
253 (void) memcpy(tmp_old_pin, pOldPin, ulOldPinLen); in soft_setpin()
254 tmp_old_pin[ulOldPinLen] = '\0'; in soft_setpin()
276 ulOldPinLen) != 0) { in soft_setpin()
/illumos-gate/usr/src/lib/pkcs11/libpkcs11/common/
H A DmetaSlotToken.c377 CK_ULONG ulOldPinLen, CK_UTF8CHAR_PTR pNewPin, CK_ULONG ulNewPinLen) in meta_SetPIN() argument
400 pOldPin, ulOldPinLen, pNewPin, ulNewPinLen); in meta_SetPIN()
H A Dpkcs11SlotToken.c848 CK_ULONG ulOldPinLen, CK_UTF8CHAR_PTR pNewPin, in C_SetPIN() argument
856 return (fast_funcs->C_SetPIN(hSession, pOldPin, ulOldPinLen, in C_SetPIN()
873 pOldPin, ulOldPinLen, pNewPin, ulNewPinLen); in C_SetPIN()
H A DmetaGlobal.h716 CK_ULONG ulOldPinLen, CK_UTF8CHAR_PTR pNewPin, CK_ULONG ulNewPinLen);
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dtpm_specific.c1791 CK_CHAR_PTR pOldPin, CK_ULONG ulOldPinLen, in token_specific_set_pin() argument
1804 if ((rc = compute_sha(pOldPin, ulOldPinLen, oldpin_hash))) { in token_specific_set_pin()