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

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