PK11_FindCertFromNickname
PK11_FindKeyByAnyCert
PK11_GetSlotName
PK11_GetTokenName
PK11_IsHW
PK11_IsPresent
PK11_IsReadOnly
PK11_SetPasswordFunc
Finds a certificate from its nickname.
#include <pk11func.h> #include <certt.h>
CERTCertificate *PK11_FindCertFromNickname( char *nickname, void *wincx);
This function has the following parameters:
nickname |
A pointer to the nickname in the certificate database or to the nickname in the token. |
wincx |
A pointer to application data for the password callback function. This pointer is set with |
The function returns one of these values:
A nickname is an alias for a certificate subject. There may be multiple certificates with the same subject, and hence the same nickname. This function will return the newest certificate that matches the subject, based on the NotBefore / NotAfter fields of the certificate. When you are finished with the certificate structure returned by PK11_FindCertFromNickname
, you must free it by calling CERT_DestroyCertificate
.
The PK11_FindCertFromNickname
function calls the password callback function set with PK11_SetPasswordFunc
and passes it the pointer specified by the wincx
parameter.
Finds the private key associated with a specified certificate in any available slot.
#include <pk11func.h> #include <certt.h> #include <keyt.h>
SECKEYPrivateKey *PK11_FindKeyByAnyCert( CERTCertificate *cert, void *wincx);
This function has the following parameters:
cert |
A pointer to a certificate structure in the certificate database. |
wincx |
A pointer to application data for the password callback function. This pointer is set with |
The function returns one of these values:
When you are finished with the private key structure returned by PK11_FindKeyByAnyCert
, you must free it by calling SECKEY_DestroyPrivateKey
.
The PK11_FindKeyByAnyCert
function calls the password callback function set with PK11_SetPasswordFunc
and passes it the pointer specified by the wincx
parameter.
#include <pk11func.h>
char *PK11_GetSlotName(PK11SlotInfo *slot);
This function has the following parameter:
slot |
The function returns one of these values:
#include <pk11func.h>
char *PK11_GetTokenName(PK11SlotInfo *slot);
This function has the following parameter:
slot |
The function returns one of these values:
Finds out whether a slot is implemented in hardware or software.
#include <pk11func.h> #include <prtypes.h>
PRBool PK11_IsHW(PK11SlotInfo *slot);
This function has the following parameter:
slot |
The function returns one of these values:
Finds out whether the token for a slot is available.
#include <pk11func.h> #include <prtypes.h>
PRBool PK11_IsPresent(PK11SlotInfo *slot);
This function has the following parameter:
slot |
The function returns one of these values:
Finds out whether a slot is read-only.
#include <pk11func.h> #include <prtypes.h>
PRBool PK11_IsReadOnly(PK11SlotInfo *slot);
This function has the following parameter:
slot |
The function returns one of these values:
#include <pk11func.h> #include <prtypes.h>
void PK11_SetPasswordFunc(PK11PasswordFunc func);
This function has the following parameter:
func |
The callback function set up by PK11_SetPasswordFunc
has the following prototype:
typedef char *(*PK11PasswordFunc)( PK11SlotInfo *slot, PRBool retry, void *arg);
This callback function has the following parameters:
slot |
|
retry |
|
arg |
A pointer supplied by the application that can be used to pass state information. Can be |
This callback function returns one of these values:
PR_Malloc
or PL_strdup
.NULL
. Several functions in the NSS libraries use the password callback function to obtain the password before performing operations that involve the protected information. The third parameter to the password callback function is application-defined and can be used for any purpose. For example, Communicator uses the parameter to pass information about which window is associated with the modal dialog box requesting the password from the user. When NSS libraries call the password callback function, the value they pass in the third parameter is determined by SSL_SetPKCS11PinArg
.
For examples of password callback functions, see the samples in the Samples directory.