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

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. /* @(#)maci.h 1.27t05 Jan 1996 */
  34. /*****************************************************************************
  35.   Definitive Fortezza header file.
  36.   Application Level Interface to Fortezza MACI Library.
  37.  
  38.   Version for CI Library 1.52
  39.     January 5, 1996
  40.   NOTICE: Fortezza Export Policy
  41.     The Fortezza Cryptologic Interface (CI) Library (both source and 
  42.     object) and Fortezza CI Library based applications are defense 
  43.     articles, as defined in the International Traffic In Arms 
  44.     Regulations (ITAR), and are subject to export controls under the 
  45.     ITAR and the Arms Export Control Act. Any export to any country 
  46.     of (a) the Fortezza CI Library, related documentation, and 
  47.     technical data, or (b) your cryptographic application, process, 
  48.     or service that is the direct product of, or contains the 
  49.     Fortezza CI Library must comply with the requirements of the ITAR. 
  50.     If you or your customer intends to engage in such export, contact 
  51.     the United States Department of State, Office of Defense Trade 
  52.     Controls for specific guidance.
  53.  ****************************************************************************/
  54. #ifndef __MACI_H
  55. #define __MACI_H
  56. #if __cplusplus__ || __cplusplus
  57. extern "C"
  58. {
  59. #endif /* C++ */
  60. #ifndef __CRYPTINT_H
  61. #ifndef PROTO_LIST
  62. #ifdef _K_AND_R_
  63. #define PROTO_LIST(list)  ()
  64. #else
  65. #define PROTO_LIST(list)  list
  66. #endif /*_K_AND_R_ */
  67. #endif /* PROTO_LIST */
  68. #ifndef RETURN_TYPE
  69. #if defined( _WIN32 ) || defined( __WIN32__ )
  70. #define RETURN_TYPE  extern _declspec( dllimport ) int _cdecl
  71. #elif defined( _WINDOWS ) || defined( _Windows )
  72. #define RETURN_TYPE  extern int _far _pascal
  73. #else
  74. #define RETURN_TYPE  extern int
  75. #endif /* Windows */
  76. #endif /* RETURN_TYPE */
  77. /* MS Visual C++ defines _MSDOS and _WINDOWS    */
  78. /* Borland C/C++ defines __MSDOS__ and _Windows */
  79. #if (defined( _WINDOWS ) || defined( _Windows )) && 
  80.     !(defined( _WIN32 ) || defined( __WIN32__ ))
  81. #define CI_FAR  _far
  82. #else
  83. #define CI_FAR
  84. #endif /* MS DOS or Windows */
  85. /*****************************************************************************
  86.   Constants
  87.  ****************************************************************************/
  88. #define CI_LIB_VERSION_VAL        0x0152    /* Version 1.52 */
  89. #define CI_CERT_SIZE              2048
  90. #define CI_CERT_FLAGS_SIZE        16
  91. #define CI_CERT_NAME_SIZE         32
  92. #define CI_CHALLENGE_SIZE         20
  93. #define CI_G_SIZE                 128
  94. #define CI_HASHVALUE_SIZE         20
  95. #define CI_IV_SIZE                24
  96. #define CI_KEY_SIZE               12
  97. #define CI_KS_SIZE                10
  98. #define CI_NAME_SIZE              32
  99. #define CI_PASSWORD_SIZE          24
  100. #define CI_PIN_SIZE               12
  101. #define CI_P_SIZE                 128
  102. #define CI_Q_SIZE                 20
  103. #define CI_R_SIZE                 40
  104. #define CI_RANDOM_NO_SIZE         20
  105. #define CI_RANDOM_SEED_SIZE       8
  106. #define CI_RA_SIZE                128
  107. #define CI_RB_SIZE                128
  108. #define CI_REG_FLAGS_SIZE         4
  109. #define CI_S_SIZE                 40
  110. #define CI_SAVE_DATA_SIZE         28
  111. #define CI_SERIAL_NUMBER_SIZE     8
  112. #define CI_SIGNATURE_SIZE         40
  113. #define CI_STATUS_FLAGS_SIZE      4
  114. #define CI_TIME_SIZE              16
  115. #define CI_TIMESTAMP_SIZE         16
  116. #define CI_WRAPPED_X_SIZE         24
  117. #define CI_Y_SIZE                 128
  118. #define CI_X_SIZE                 20
  119. /* Miscellaneous */
  120. #define CI_NULL_FLAG              0 
  121. #define CI_POWER_DOWN_FLAG        2
  122. #define CI_NO_LOG_OFF_FLAG        4
  123. #define CI_INITIATOR_FLAG         0
  124. #define CI_RECIPIENT_FLAG         1
  125. #define CI_BLOCK_LOCK_FLAG        1
  126. #define CI_SSO_LOGGED_ON          0x40
  127. #define CI_USER_LOGGED_ON         0x00
  128. #define CI_FAST_MODE              0x10
  129. #define CI_SLOW_MODE              0x00
  130. #define CI_WORST_CASE_MODE        0x40
  131. #define CI_TYPICAL_CASE_MODE      0x00
  132. /* Card Public Key Algorithms Types */
  133. #define CI_DSA_TYPE               0xA
  134. #define CI_KEA_TYPE               0x5
  135. #define CI_DSA_KEA_TYPE           0xF
  136. /* Fortezza Pin Types */
  137. #define CI_SSO_PIN                0x25
  138. #define CI_USER_PIN               0x2A
  139. /* Crypto Types */
  140. #define CI_ENCRYPT_TYPE           0
  141. #define CI_DECRYPT_TYPE           1
  142. #define CI_HASH_TYPE              2
  143. /* Save and Restore Types */
  144. #define CI_ENCRYPT_INT_TYPE       0x00      /* Internal Encryption */
  145. #define CI_ENCRYPT_EXT_TYPE       0x10      /* External Encryption */
  146. #define CI_DECRYPT_INT_TYPE       0x01      /* Internal Decryption */
  147. #define CI_DECRYPT_EXT_TYPE       0x11      /* External Decryption */
  148. #define CI_HASH_INT_TYPE          0x02      /* Internal Hash */
  149. #define CI_HASH_EXT_TYPE          0x12      /* External Hash */
  150. #define CI_TYPE_EXT_FLAG          0x10      /* Used to differentiate */
  151. /* Configuration types */
  152. #define CI_SET_SPEED_TYPE         1
  153. #define CI_SET_TIMING_TYPE        2
  154. /* Lock States */
  155. #define CI_SOCKET_UNLOCKED        0
  156. #define CI_HOLD_LOCK              1
  157. #define CI_SOCKET_LOCKED          2
  158.    
  159. /* Fortezza Crypto Types Modes */
  160. #define CI_ECB64_MODE             0
  161. #define CI_CBC64_MODE             1
  162. #define CI_OFB64_MODE             2
  163. #define CI_CFB64_MODE             3
  164. #define CI_CFB32_MODE             4
  165. #define CI_CFB16_MODE             5
  166. #define CI_CFB8_MODE              6
  167. /* Card States */
  168. #define CI_POWER_UP               0
  169. #define CI_UNINITIALIZED          1
  170. #define CI_INITIALIZED            2
  171. #define CI_SSO_INITIALIZED        3
  172. #define CI_LAW_INITIALIZED        4
  173. #define CI_USER_INITIALIZED       5
  174. #define CI_STANDBY                6
  175. #define CI_READY                  7
  176. #define CI_ZEROIZE                8
  177. #define CI_INTERNAL_FAILURE       (-1)
  178. /* Flags for Firmware Update. */
  179. #if !defined( _K_AND_R_ )
  180. #define CI_NOT_LAST_BLOCK_FLAG    0x00000000UL
  181. #define CI_LAST_BLOCK_FLAG        0x80000000UL
  182. #define CI_DESTRUCTIVE_FLAG       0x000000FFUL
  183. #define CI_NONDESTRUCTIVE_FLAG    0x0000FF00UL
  184. #else
  185. #define CI_NOT_LAST_BLOCK_FLAG    0x00000000L
  186. #define CI_LAST_BLOCK_FLAG        0x80000000L
  187. #define CI_DESTRUCTIVE_FLAG       0x000000FFL
  188. #define CI_NONDESTRUCTIVE_FLAG    0x0000FF00L
  189. #endif /* _K_AND_R_ */
  190. /****************************************************************************
  191.   Fortezza Library Return Codes
  192.  ***************************************************************************/
  193. /* Card Responses */
  194. #define CI_OK                     0
  195. #define CI_FAIL                   1
  196. #define CI_CHECKWORD_FAIL         2
  197. #define CI_INV_TYPE               3
  198. #define CI_INV_MODE               4
  199. #define CI_INV_KEY_INDEX          5
  200. #define CI_INV_CERT_INDEX         6
  201. #define CI_INV_SIZE               7
  202. #define CI_INV_HEADER             8
  203. #define CI_INV_STATE              9
  204. #define CI_EXEC_FAIL              10
  205. #define CI_NO_KEY                 11
  206. #define CI_NO_IV                  12
  207. #define CI_NO_X                   13
  208. #define CI_NO_SAVE                15
  209. #define CI_REG_IN_USE             16
  210. #define CI_INV_COMMAND            17
  211. #define CI_INV_POINTER            18
  212. #define CI_BAD_CLOCK              19
  213. #define CI_NO_DSA_PARMS           20
  214. /* Library Errors */
  215. #define CI_ERROR                  (-1)
  216. #define CI_LIB_NOT_INIT           (-2)
  217. #define CI_CARD_NOT_READY         (-3)
  218. #define CI_CARD_IN_USE            (-4)
  219. #define CI_TIME_OUT               (-5)
  220. #define CI_OUT_OF_MEMORY          (-6)
  221. #define CI_NULL_PTR               (-7)
  222. #define CI_BAD_SIZE               (-8)
  223. #define CI_NO_DECRYPT             (-9)
  224. #define CI_NO_ENCRYPT             (-10)
  225. #define CI_NO_EXECUTE             (-11)
  226. #define CI_BAD_PARAMETER          (-12)
  227. #define CI_OUT_OF_RESOURCES       (-13)
  228. #define CI_NO_CARD                (-20)
  229. #define CI_NO_DRIVER              (-21)
  230. #define CI_NO_CRDSRV              (-22)
  231. #define CI_NO_SCTSRV              (-23)
  232. #define CI_BAD_CARD               (-30)
  233. #define CI_BAD_IOCTL              (-31)
  234. #define CI_BAD_READ               (-32)
  235. #define CI_BAD_SEEK               (-33)
  236. #define CI_BAD_WRITE              (-34)
  237. #define CI_BAD_FLUSH              (-35)
  238. #define CI_BAD_IOSEEK             (-36)
  239. #define CI_BAD_ADDR               (-37)
  240. #define CI_INV_SOCKET_INDEX       (-40)
  241. #define CI_SOCKET_IN_USE          (-41)
  242. #define CI_NO_SOCKET              (-42)
  243. #define CI_SOCKET_NOT_OPENED      (-43)
  244. #define CI_BAD_TUPLES             (-44)
  245. #define CI_NOT_A_CRYPTO_CARD      (-45)
  246. #define CI_INVALID_FUNCTION       (-50)
  247. #define CI_LIB_ALRDY_INIT         (-51)
  248. #define CI_SRVR_ERROR             (-52)
  249. #define MACI_SESSION_EXCEEDED     (-53)
  250. /*****************************************************************************
  251.   Data Structures
  252.  ****************************************************************************/
  253. typedef unsigned char   CI_CERTIFICATE[CI_CERT_SIZE];
  254. typedef unsigned char   CI_CERT_FLAGS[CI_CERT_FLAGS_SIZE];
  255. typedef unsigned char   CI_CERT_STR[CI_CERT_NAME_SIZE+4];
  256. typedef unsigned char   CI_FAR *CI_DATA;
  257. typedef unsigned char   CI_G[CI_G_SIZE];
  258. typedef unsigned char   CI_HASHVALUE[CI_HASHVALUE_SIZE];
  259. typedef unsigned char   CI_IV[CI_IV_SIZE];
  260. typedef unsigned char   CI_KEY[CI_KEY_SIZE];
  261. typedef unsigned char   CI_KS[CI_KS_SIZE];
  262. typedef unsigned char   CI_P[CI_P_SIZE];
  263. typedef unsigned char   CI_PASSWORD[CI_PASSWORD_SIZE + 4];
  264. typedef unsigned char   CI_PIN[CI_PIN_SIZE + 4];
  265. typedef unsigned char   CI_Q[CI_Q_SIZE];
  266. typedef unsigned char   CI_RA[CI_RA_SIZE];
  267. typedef unsigned char   CI_RB[CI_RB_SIZE];
  268. typedef unsigned char   CI_RANDOM[CI_RANDOM_NO_SIZE];
  269. typedef unsigned char   CI_RANDSEED[CI_RANDOM_SEED_SIZE];
  270. typedef unsigned char   CI_REG_FLAGS[CI_REG_FLAGS_SIZE];
  271. typedef unsigned char   CI_SIGNATURE[CI_SIGNATURE_SIZE];
  272. typedef unsigned char   CI_SAVE_DATA[CI_SAVE_DATA_SIZE];
  273. typedef unsigned char   CI_SERIAL_NUMBER[CI_SERIAL_NUMBER_SIZE];
  274. typedef unsigned int    CI_STATE, CI_FAR *CI_STATE_PTR;
  275. typedef unsigned char   CI_TIME[CI_TIME_SIZE];
  276. typedef unsigned char   CI_TIMESTAMP[CI_TIMESTAMP_SIZE];
  277. typedef unsigned char   CI_WRAPPED_X[CI_WRAPPED_X_SIZE];
  278. typedef unsigned char   CI_Y[CI_Y_SIZE];
  279. typedef unsigned char   CI_X[CI_X_SIZE];
  280. typedef struct {
  281.     int     LibraryVersion;                 /* CI Library version */
  282.     int     ManufacturerVersion;            /* Card's hardware version */
  283.     char    ManufacturerName[CI_NAME_SIZE+4]; /* Card manufacturer's name*/
  284.     char    ProductName[CI_NAME_SIZE+4];    /* Card's product name */
  285.     char    ProcessorType[CI_NAME_SIZE+4];  /* Card's processor type */
  286.     unsigned long  UserRAMSize;             /* Amount of User RAM in bytes */
  287.     unsigned long  LargestBlockSize;        /* Largest block of data to pass in */
  288.     int     KeyRegisterCount;               /* Number of key registers */
  289.     int     CertificateCount;               /* Maximum number of personalities (# certs-1) */
  290.     int     CryptoCardFlag;                 /* A flag that if non-zero indicates that there is
  291.                                                a Crypto-Card in the socket. If this value is
  292.                                                zero then there is NOT a Crypto-Card in the
  293.                                                sockets. */
  294.     int     ICDVersion;                     /* The ICD compliance level */
  295.     int     ManufacturerSWVer;              /* The Manufacturer's Software Version */
  296.     int     DriverVersion;                  /* Driver Version */
  297. } CI_CONFIG, CI_FAR *CI_CONFIG_PTR;
  298. typedef struct {
  299.     int          CertificateIndex;          /* Index from 1 to CertificateCount */
  300.     CI_CERT_STR  CertLabel;                 /* The certificate label */
  301. } CI_PERSON, CI_FAR *CI_PERSON_PTR;
  302. typedef struct {
  303.      int    CurrentSocket;                  /* The currently selected socket */
  304.      int    LockState;                      /* Lock status of the current socket */
  305.      CI_SERIAL_NUMBER  SerialNumber;        /* Serial number of the Crypto Engine chip */
  306.      CI_STATE  CurrentState;                /* State of The Card */
  307.      int    DecryptionMode;                 /* Decryption mode of The Card */
  308.      int    EncryptionMode;                 /* Encryption mode of The Card */
  309.      int    CurrentPersonality;             /* Index of the current personality */
  310.      int    KeyRegisterCount;               /* No. of Key Register on The Card */
  311.      CI_REG_FLAGS   KeyRegisterFlags;       /* Bit Masks indicating Key Register use */
  312.      int    CertificateCount;               /* No. of Certificates on The Card */
  313.      CI_CERT_FLAGS  CertificateFlags;       /* Bit Mask indicating certificate use */
  314.      unsigned char  Flags[CI_STATUS_FLAGS_SIZE];  
  315.                                             /* Flag[0] : bit 6 for Condition mode */
  316.                                             /*           bit 4 for Clock mode */
  317. } CI_STATUS, CI_FAR *CI_STATUS_PTR;
  318. #endif
  319. /*  Session constants */
  320. #ifndef HSESSION_DEFINE
  321. typedef unsigned int    HSESSION;
  322. #define HSESSION_DEFINE
  323. #endif
  324. #define MAXSESSION 100
  325. /*****************************************************************************
  326.   Function Call Prototypes
  327.  ****************************************************************************/
  328. RETURN_TYPE
  329. MACI_ChangePIN PROTO_LIST( (
  330.     HSESSION       hSession,
  331.     int            PINType,
  332.     CI_PIN CI_FAR  pOldPIN,
  333.     CI_PIN CI_FAR  pNewPIN ) );
  334. RETURN_TYPE
  335. MACI_CheckPIN PROTO_LIST( (
  336.     HSESSION       hSession,
  337.     int            PINType,
  338.     CI_PIN CI_FAR  pPIN ) );
  339. RETURN_TYPE
  340. MACI_Close PROTO_LIST( (
  341.     HSESSION       hSession,
  342.     unsigned int   Flags,
  343.     int            SocketIndex ) );
  344. RETURN_TYPE
  345. MACI_Decrypt PROTO_LIST( (
  346.     HSESSION       hSession,
  347.     unsigned int   CipherSize,
  348.     CI_DATA        pCipher,
  349.     CI_DATA        pPlain ) );
  350. RETURN_TYPE
  351. MACI_DeleteCertificate PROTO_LIST( (
  352.     HSESSION       hSession,
  353.     int            CertificateIndex ) );
  354. RETURN_TYPE
  355. MACI_DeleteKey PROTO_LIST( (
  356.     HSESSION       hSession,
  357.     int            RegisterIndex ) );
  358. RETURN_TYPE
  359. MACI_Encrypt PROTO_LIST( (
  360.     HSESSION       hSession,
  361.     unsigned int   PlainSize,
  362.     CI_DATA        pPlain,
  363.     CI_DATA        pCipher ) );
  364. RETURN_TYPE
  365. MACI_ExtractX PROTO_LIST( (
  366.     HSESSION             hSession,
  367.     int                  CertificateIndex,
  368.     int                  AlgorithmType,
  369.     CI_PASSWORD CI_FAR   pPassword,
  370.     unsigned int         YSize,
  371.     CI_Y CI_FAR          pY,
  372.     CI_WRAPPED_X CI_FAR  pX,
  373.     CI_RA CI_FAR         pRa,
  374.     unsigned int         PandGSize,
  375.     unsigned int         QSize,
  376.     CI_P CI_FAR          pP,
  377.     CI_Q CI_FAR          pQ,
  378.     CI_G CI_FAR          pG ) );
  379. RETURN_TYPE
  380. MACI_FirmwareUpdate PROTO_LIST( (
  381.     HSESSION       hSession,
  382.     unsigned long  Flags,
  383.     long           Cksum,
  384.     unsigned int   CksumLength,
  385.     unsigned int   DataSize,
  386.     CI_DATA        pData ) );
  387. RETURN_TYPE
  388. MACI_GenerateIV PROTO_LIST( (
  389.     HSESSION       hSession,
  390.     CI_IV CI_FAR  pIV ) );
  391. RETURN_TYPE
  392. MACI_GenerateMEK PROTO_LIST( (
  393.     HSESSION       hSession,
  394.     int  RegisterIndex,
  395.     int  Reserved ) );
  396. RETURN_TYPE
  397. MACI_GenerateRa PROTO_LIST( (
  398.     HSESSION       hSession,
  399.     CI_RA CI_FAR   pRa ) );
  400. RETURN_TYPE
  401. MACI_GenerateRandom PROTO_LIST( (
  402.     HSESSION          hSession,
  403.     CI_RANDOM CI_FAR  pRandom ) );
  404. RETURN_TYPE
  405. MACI_GenerateTEK PROTO_LIST( (
  406.     HSESSION      hSession,
  407.     int           Flags,
  408.     int           RegisterIndex,
  409.     CI_RA CI_FAR  pRa,
  410.     CI_RB CI_FAR  pRb,
  411.     unsigned int  YSize,
  412.     CI_Y CI_FAR   pY ) );
  413. RETURN_TYPE
  414. MACI_GenerateX PROTO_LIST( (
  415.     HSESSION      hSession,
  416.     int           CertificateIndex,
  417.     int           AlgorithmType,
  418.     unsigned int  PandGSize,
  419.     unsigned int  QSize,
  420.     CI_P CI_FAR   pP,
  421.     CI_Q CI_FAR   pQ,
  422.     CI_G CI_FAR   pG,
  423.     unsigned int  YSize,
  424.     CI_Y CI_FAR   pY ) );
  425. RETURN_TYPE
  426. MACI_GetCertificate PROTO_LIST( (
  427.     HSESSION               hSession,
  428.     int                    CertificateIndex,
  429.     CI_CERTIFICATE CI_FAR  pCertificate ) );
  430. RETURN_TYPE
  431. MACI_GetConfiguration PROTO_LIST( (
  432.     HSESSION       hSession,
  433.     CI_CONFIG_PTR  pConfiguration ) );
  434. RETURN_TYPE
  435. MACI_GetHash PROTO_LIST( (
  436.     HSESSION             hSession,
  437.     unsigned int         DataSize,
  438.     CI_DATA              pData,
  439.     CI_HASHVALUE CI_FAR  pHashValue ) );
  440. RETURN_TYPE
  441. MACI_GetPersonalityList PROTO_LIST( (
  442.     HSESSION          hSession,
  443.     int               EntryCount,
  444.     CI_PERSON CI_FAR  pPersonalityList[] ) );
  445. RETURN_TYPE
  446. MACI_GetSessionID PROTO_LIST( (
  447.     HSESSION     *hSession ) );
  448. RETURN_TYPE
  449. MACI_GetState PROTO_LIST( (
  450.     HSESSION       hSession,
  451.     CI_STATE_PTR   pState ) );
  452. RETURN_TYPE
  453. MACI_GetStatus PROTO_LIST( (
  454.     HSESSION       hSession,
  455.     CI_STATUS_PTR  pStatus ) );
  456. RETURN_TYPE
  457. MACI_GetTime PROTO_LIST( (
  458.     HSESSION        hSession,
  459.     CI_TIME CI_FAR  pTime ) );
  460. RETURN_TYPE
  461. MACI_Hash PROTO_LIST( (
  462.     HSESSION      hSession,
  463.     unsigned int  DataSize,
  464.     CI_DATA       pData ) );
  465. RETURN_TYPE
  466. MACI_Initialize PROTO_LIST( (
  467.     int CI_FAR  *SocketCount ) );
  468. RETURN_TYPE
  469. MACI_InitializeHash PROTO_LIST( (
  470.     HSESSION          hSession ) );
  471. RETURN_TYPE
  472. MACI_InstallX PROTO_LIST( (
  473.     HSESSION             hSession,
  474.     int                  CertificateIndex,
  475.     int                  AlgorithmType,
  476.     CI_PASSWORD CI_FAR   pPassword,
  477.     unsigned int         YSize,
  478.     CI_Y CI_FAR          pY,
  479.     CI_WRAPPED_X CI_FAR  pWrappedX,
  480.     CI_RA CI_FAR         pRa,
  481.     unsigned int         PandGSize,
  482.     unsigned int         QSize,
  483.     CI_P CI_FAR          pP,
  484.     CI_Q CI_FAR          pQ,
  485.     CI_G CI_FAR          pG ) );
  486. RETURN_TYPE
  487. MACI_LoadCertificate PROTO_LIST( (
  488.     HSESSION               hSession,
  489.     int                    CertificateIndex,
  490.     CI_CERT_STR CI_FAR     pCertLabel,
  491.     CI_CERTIFICATE CI_FAR  pCertificate,
  492.     long                   Reserved ) );
  493. RETURN_TYPE
  494. MACI_LoadDSAParameters PROTO_LIST( (
  495.     HSESSION      hSession,
  496.     unsigned int  PandGSize,
  497.     unsigned int  QSize,
  498.     CI_P CI_FAR   pP,
  499.     CI_Q CI_FAR   pQ,
  500.     CI_G CI_FAR   pG ) );
  501. RETURN_TYPE
  502. MACI_LoadInitValues PROTO_LIST( (
  503.     HSESSION            hSession,
  504.     CI_RANDSEED CI_FAR  pRandSeed,
  505.     CI_KS CI_FAR        pKs ) );
  506. RETURN_TYPE
  507. MACI_LoadIV PROTO_LIST( (
  508.     HSESSION      hSession,
  509.     CI_IV CI_FAR  pIV ) );
  510. RETURN_TYPE
  511. MACI_LoadX PROTO_LIST( (
  512.     HSESSION      hSession,
  513.     int           CertificateIndex,
  514.     int           AlgorithmType,
  515.     unsigned int  PandGSize,
  516.     unsigned int  QSize,
  517.     CI_P CI_FAR   pP,
  518.     CI_Q CI_FAR   pQ,
  519.     CI_G CI_FAR   pG,
  520.     CI_X CI_FAR   pX,
  521.     unsigned int  YSize,
  522.     CI_Y CI_FAR   pY ) );
  523. RETURN_TYPE
  524. MACI_Lock PROTO_LIST( (
  525.     HSESSION  hSession,
  526.     int       Flags ) );
  527. RETURN_TYPE
  528. MACI_Open PROTO_LIST( (
  529.     HSESSION      hSession,
  530.     unsigned int  Flags,
  531.     int           SocketIndex ) );
  532. RETURN_TYPE
  533. MACI_RelayX PROTO_LIST( (
  534.     HSESSION             hSession,
  535.     CI_PASSWORD CI_FAR   pOldPassword,
  536.     unsigned int         OldYSize,
  537.     CI_Y CI_FAR          pOldY,
  538.     CI_RA CI_FAR         pOldRa,
  539.     CI_WRAPPED_X CI_FAR  pOldWrappedX,
  540.     CI_PASSWORD CI_FAR   pNewPassword,
  541.     unsigned int         NewYSize,
  542.     CI_Y CI_FAR          pNewY,
  543.     CI_RA CI_FAR         pNewRa,
  544.     CI_WRAPPED_X CI_FAR  pNewWrappedX ) );
  545. RETURN_TYPE
  546. MACI_Reset PROTO_LIST( (
  547.     HSESSION          hSession ) );
  548. RETURN_TYPE
  549. MACI_Restore PROTO_LIST( (
  550.     HSESSION             hSession,
  551.     int                  CryptoType,
  552.     CI_SAVE_DATA CI_FAR  pData ) );
  553. RETURN_TYPE
  554. MACI_Save PROTO_LIST( (
  555.     HSESSION             hSession,
  556.     int                  CryptoType,
  557.     CI_SAVE_DATA CI_FAR  pData ) );
  558. RETURN_TYPE
  559. MACI_Select PROTO_LIST( (
  560.     HSESSION  hSession,
  561.     int       SocketIndex ) );
  562. RETURN_TYPE
  563. MACI_SetConfiguration PROTO_LIST( (
  564.     HSESSION      hSession,
  565.     int           Type,
  566.     unsigned int  DataSize,
  567.     CI_DATA       pData ) );
  568. RETURN_TYPE
  569. MACI_SetKey PROTO_LIST( (
  570.     HSESSION     hSession,
  571.     int  RegisterIndex ) );
  572. RETURN_TYPE
  573. MACI_SetMode PROTO_LIST( (
  574.     HSESSION hSession,
  575.     int      CryptoType,
  576.     int      CryptoMode ) );
  577. RETURN_TYPE
  578. MACI_SetPersonality PROTO_LIST( (
  579.     HSESSION hSession,
  580.     int      CertificateIndex ) );
  581. RETURN_TYPE
  582. MACI_SetTime PROTO_LIST( (
  583.     HSESSION        hSession,
  584.     CI_TIME CI_FAR  pTime ) );
  585. RETURN_TYPE
  586. MACI_Sign PROTO_LIST( (
  587.     HSESSION             hSession,
  588.     CI_HASHVALUE CI_FAR  pHashValue,
  589.     CI_SIGNATURE CI_FAR  pSignature ) );
  590. RETURN_TYPE
  591. MACI_Terminate PROTO_LIST( (
  592.     HSESSION          hSession ) );
  593. RETURN_TYPE
  594. MACI_TimeStamp PROTO_LIST( (
  595.     HSESSION             hSession,
  596.     CI_HASHVALUE CI_FAR  pHashValue,
  597.     CI_SIGNATURE CI_FAR  pSignature,
  598.     CI_TIMESTAMP CI_FAR  pTimeStamp ) );
  599.   
  600. RETURN_TYPE
  601. MACI_Unlock PROTO_LIST( (
  602.     HSESSION          hSession)  );
  603. RETURN_TYPE
  604. MACI_UnwrapKey PROTO_LIST( (
  605.     HSESSION       hSession,
  606.     int            UnwrapIndex,
  607.     int            KeyIndex,
  608.     CI_KEY CI_FAR  pKey ) );
  609. RETURN_TYPE
  610. MACI_VerifySignature PROTO_LIST( (
  611.     HSESSION             hSession,
  612.     CI_HASHVALUE CI_FAR  pHashValue,
  613.     unsigned int         YSize,
  614.     CI_Y CI_FAR          pY,
  615.     CI_SIGNATURE CI_FAR  pSignature ) );
  616. RETURN_TYPE
  617. MACI_VerifyTimeStamp PROTO_LIST( (
  618.     HSESSION             hSession,
  619.     CI_HASHVALUE CI_FAR  pHashValue,
  620.     CI_SIGNATURE CI_FAR  pSignature,
  621.     CI_TIMESTAMP CI_FAR  pTimeStamp ) );
  622. RETURN_TYPE
  623. MACI_WrapKey PROTO_LIST( (
  624.     HSESSION       hSession,
  625.     int            WrapIndex,
  626.     int            KeyIndex,
  627.     CI_KEY CI_FAR  pKey ) );
  628. RETURN_TYPE
  629. MACI_Zeroize PROTO_LIST( (
  630.     HSESSION          hSession ) );
  631. #if __cplusplus__ || __cplusplus
  632. }
  633. #endif /* C++ */
  634. #endif /* CRYPTINT_H */