pkfnc

Note

  • This page is part of the OLD SSL Reference that we are migrating into the format described in the MDN Style Guide. If you are inclined to help with this migration, your help would be very much appreciated.

  • Upgraded documentation may be found in the NSS reference

PKCS #11 Functions

Chapter 7 PKCS #11 Functions —————————————————-

This chapter describes the core PKCS #11 functions that an application needs for communicating with cryptographic modules. In particular, these functions are used for obtaining certificates, keys, and passwords.

`PK11_FindCertFromNickname <#1035673>`__
`PK11_FindKeyByAnyCert <#1026891>`__
`PK11_GetSlotName <#1030779>`__
`PK11_GetTokenName <#1026964>`__
`PK11_IsHW <#1026762>`__
`PK11_IsPresent <#1022948>`__
`PK11_IsReadOnly <#1022991>`__
`PK11_SetPasswordFunc <#1023128>`__

PK11_FindCertFromNickname

Finds a certificate from its nickname.

Syntax

#include <pk11func.h>
#include <certt.h>
CERTCertificate *PK11_FindCertFromNickname(
   char *nickname,
   void *wincx);

Parameters

This function has the following parameters:

Returns

The function returns one of these values:

  • If successful, a pointer to a certificate structure.

  • If unsuccessful, NULL.

Description

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 <sslcrt.html#1050532>`__.

The PK11_FindCertFromNickname function calls the password callback function set with `PK11_SetPasswordFunc <#1023128>`__ and passes it the pointer specified by the wincx parameter.

PK11_FindKeyByAnyCert

Finds the private key associated with a specified certificate in any available slot.

Syntax

#include <pk11func.h>
#include <certt.h>
#include <keyt.h>
SECKEYPrivateKey *PK11_FindKeyByAnyCert(
   CERTCertificate *cert,
   void *wincx);

Parameters

This function has the following parameters:

Returns

The function returns one of these values:

  • If successful, a pointer to a private key structure.

  • If unsuccessful, NULL.

Description

When you are finished with the private key structure returned by PK11_FindKeyByAnyCert, you must free it by calling `SECKEY_DestroyPrivateKey <sslkey.html#1051017>`__.

The PK11_FindKeyByAnyCert function calls the password callback function set with `PK11_SetPasswordFunc <#1023128>`__ and passes it the pointer specified by the wincx parameter.

PK11_GetSlotName

Gets the name of a slot.

Syntax

#include <pk11func.h>
char *PK11_GetSlotName(PK11SlotInfo *slot);

Parameters

This function has the following parameter:

Returns

The function returns one of these values:

  • If successful, a pointer to the name of the slot (a string).

  • If unsuccessful, NULL.

Description

If the slot is freed, the string with the slot name may also be freed. If you want to preserve it, copy the string before freeing the slot. Do not try to free the string yourself.

PK11_GetTokenName

Gets the name of the token.

Syntax

#include <pk11func.h>
char *PK11_GetTokenName(PK11SlotInfo *slot);

Parameters

This function has the following parameter:

Returns

The function returns one of these values:

  • If successful, a pointer to the name of the token (a string).

  • If unsuccessful, NULL.

Description

If the slot is freed, the string with the token name may also be freed. If you want to preserve it, copy the string before freeing the slot. Do not try to free the string yourself.

PK11_IsHW

Finds out whether a slot is implemented in hardware or software.

Syntax

#include <pk11func.h>
#include <prtypes.h>
PRBool PK11_IsHW(PK11SlotInfo *slot);

Parameters

This function has the following parameter:

Returns

The function returns one of these values:

  • If the slot is implemented in hardware, PR_TRUE.

  • If the slot is implemented in software, PR_FALSE.

PK11_IsPresent

Finds out whether the token for a slot is available.

Syntax

#include <pk11func.h>
#include <prtypes.h>
PRBool PK11_IsPresent(PK11SlotInfo *slot);

Parameters

This function has the following parameter:

Returns

The function returns one of these values:

  • If token is available, PR_TRUE.

  • If token is disabled or missing, PR_FALSE.

PK11_IsReadOnly

Finds out whether a slot is read-only.

Syntax

#include <pk11func.h>
#include <prtypes.h>
PRBool PK11_IsReadOnly(PK11SlotInfo *slot);

Parameters

This function has the following parameter:

Returns

The function returns one of these values:

  • If slot is read-only, PR_TRUE.

  • Otherwise, PR_FALSE.

PK11_SetPasswordFunc

Defines a callback function used by the NSS libraries whenever information protected by a password needs to be retrieved from the key or certificate databases.

Syntax

#include <pk11func.h>
#include <prtypes.h>
void PK11_SetPasswordFunc(PK11PasswordFunc func);

Parameter

This function has the following parameter:

Description

During the course of an SSL operation, it may be necessary for the user to log in to a PKCS #11 token (either a smart card or soft token) to access protected information, such as a private key. Such information is protected with a password that can be retrieved by calling an application-supplied callback function. The callback function is identified in a call to PK11_SetPasswordFunc that takes place during NSS initialization.

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:

This callback function returns one of these values:

  • If successful, a pointer to the password. This memory must have been allocated with `PR_Malloc <../../../../../nspr/reference/html/prmem2.html#21428>`__ or `PL_strdup <../../../../../nspr/reference/html/plstr.html#21753>`__.

  • If unsuccessful, returns NULL.

Many tokens keep track of the number of attempts to enter a password and do not allow further attempts after a certain point. Therefore, if the retry argument is PR_TRUE, indicating that the password was tried and is wrong, the callback function should return NULL to indicate that it is unsuccessful, rather than attempting to return the same password again. Failing to terminate when the retry argument is PR_TRUE can result in an endless loop.

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 mozilla_projects_nss_ssl_functions_sslfnc#1088040.

See Also

For examples of password callback functions, see the samples in the NSS Sample Code directory.