token.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:5k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* 
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. #ifdef DEBUG
  34. static const char CVS_ID[] = "@(#) $RCSfile: token.c,v $ $Revision: 1.1 $ $Date: 2000/03/31 19:43:53 $ $Name: NSS_3_1_1_RTM $";
  35. #endif /* DEBUG */
  36. #include "builtins.h"
  37. /*
  38.  * builtins/token.c
  39.  *
  40.  * This file implements the NSSCKMDToken object for the
  41.  * "builtin objects" cryptoki module.
  42.  */
  43. static NSSUTF8 *
  44. builtins_mdToken_GetLabel
  45. (
  46.   NSSCKMDToken *mdToken,
  47.   NSSCKFWToken *fwToken,
  48.   NSSCKMDInstance *mdInstance,
  49.   NSSCKFWInstance *fwInstance,
  50.   CK_RV *pError
  51. )
  52. {
  53.   return (NSSUTF8 *)nss_builtins_TokenLabel;
  54. }
  55. static NSSUTF8 *
  56. builtins_mdToken_GetManufacturerID
  57. (
  58.   NSSCKMDToken *mdToken,
  59.   NSSCKFWToken *fwToken,
  60.   NSSCKMDInstance *mdInstance,
  61.   NSSCKFWInstance *fwInstance,
  62.   CK_RV *pError
  63. )
  64. {
  65.   return (NSSUTF8 *)nss_builtins_ManufacturerID;
  66. }
  67. static NSSUTF8 *
  68. builtins_mdToken_GetModel
  69. (
  70.   NSSCKMDToken *mdToken,
  71.   NSSCKFWToken *fwToken,
  72.   NSSCKMDInstance *mdInstance,
  73.   NSSCKFWInstance *fwInstance,
  74.   CK_RV *pError
  75. )
  76. {
  77.   return (NSSUTF8 *)nss_builtins_TokenModel;
  78. }
  79. static NSSUTF8 *
  80. builtins_mdToken_GetSerialNumber
  81. (
  82.   NSSCKMDToken *mdToken,
  83.   NSSCKFWToken *fwToken,
  84.   NSSCKMDInstance *mdInstance,
  85.   NSSCKFWInstance *fwInstance,
  86.   CK_RV *pError
  87. )
  88. {
  89.   return (NSSUTF8 *)nss_builtins_TokenSerialNumber;
  90. }
  91. static CK_BBOOL
  92. builtins_mdToken_GetIsWriteProtected
  93. (
  94.   NSSCKMDToken *mdToken,
  95.   NSSCKFWToken *fwToken,
  96.   NSSCKMDInstance *mdInstance,
  97.   NSSCKFWInstance *fwInstance
  98. )
  99. {
  100.   return CK_TRUE;
  101. }
  102. static CK_VERSION
  103. builtins_mdToken_GetHardwareVersion
  104. (
  105.   NSSCKMDToken *mdToken,
  106.   NSSCKFWToken *fwToken,
  107.   NSSCKMDInstance *mdInstance,
  108.   NSSCKFWInstance *fwInstance
  109. )
  110. {
  111.   return nss_builtins_HardwareVersion;
  112. }
  113. static CK_VERSION
  114. builtins_mdToken_GetFirmwareVersion
  115. (
  116.   NSSCKMDToken *mdToken,
  117.   NSSCKFWToken *fwToken,
  118.   NSSCKMDInstance *mdInstance,
  119.   NSSCKFWInstance *fwInstance
  120. )
  121. {
  122.   return nss_builtins_FirmwareVersion;
  123. }
  124. static NSSCKMDSession *
  125. builtins_mdToken_OpenSession
  126. (
  127.   NSSCKMDToken *mdToken,
  128.   NSSCKFWToken *fwToken,
  129.   NSSCKMDInstance *mdInstance,
  130.   NSSCKFWInstance *fwInstance,
  131.   NSSCKFWSession *fwSession,
  132.   CK_BBOOL rw,
  133.   CK_RV *pError
  134. )
  135. {
  136.   return nss_builtins_CreateSession(fwSession, pError);
  137. }
  138. NSS_IMPLEMENT_DATA const NSSCKMDToken
  139. nss_builtins_mdToken = {
  140.   (void *)NULL, /* etc */
  141.   NULL, /* Setup */
  142.   NULL, /* Invalidate */
  143.   NULL, /* InitToken -- default errs */
  144.   builtins_mdToken_GetLabel,
  145.   builtins_mdToken_GetManufacturerID,
  146.   builtins_mdToken_GetModel,
  147.   builtins_mdToken_GetSerialNumber,
  148.   NULL, /* GetHasRNG -- default is false */
  149.   builtins_mdToken_GetIsWriteProtected,
  150.   NULL, /* GetLoginRequired -- default is false */
  151.   NULL, /* GetUserPinInitialized -- default is false */
  152.   NULL, /* GetRestoreKeyNotNeeded -- irrelevant */
  153.   NULL, /* GetHasClockOnToken -- default is false */
  154.   NULL, /* GetHasProtectedAuthenticationPath -- default is false */
  155.   NULL, /* GetSupportsDualCryptoOperations -- default is false */
  156.   NULL, /* GetMaxSessionCount -- default is CK_UNAVAILABLE_INFORMATION */
  157.   NULL, /* GetMaxRwSessionCount -- default is CK_UNAVAILABLE_INFORMATION */
  158.   NULL, /* GetMaxPinLen -- irrelevant */
  159.   NULL, /* GetMinPinLen -- irrelevant */
  160.   NULL, /* GetTotalPublicMemory -- default is CK_UNAVAILABLE_INFORMATION */
  161.   NULL, /* GetFreePublicMemory -- default is CK_UNAVAILABLE_INFORMATION */
  162.   NULL, /* GetTotalPrivateMemory -- default is CK_UNAVAILABLE_INFORMATION */
  163.   NULL, /* GetFreePrivateMemory -- default is CK_UNAVAILABLE_INFORMATION */
  164.   builtins_mdToken_GetHardwareVersion,
  165.   builtins_mdToken_GetFirmwareVersion,
  166.   NULL, /* GetUTCTime -- no clock */
  167.   builtins_mdToken_OpenSession,
  168.   NULL, /* GetMechanismCount -- default is zero */
  169.   NULL, /* GetMechanismTypes -- irrelevant */
  170.   NULL, /* GetMechanism -- irrelevant */
  171.   (void *)NULL /* null terminator */
  172. };