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

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. #ifndef FORSOCK_H_
  34. #define FORSOCK_H_
  35. #include "seccomon.h"
  36. #include "fpkcs11.h"
  37. #include "fpkcs11i.h"
  38. #include "fpkstrs.h"
  39. #ifndef prtypes_h___
  40. typedef enum { PR_FALSE, PR_TRUE }PRBool;
  41. #endif
  42. #define SOCKET_SUCCESS  0
  43. #define SOCKET_FAILURE  1
  44. #define KeyNotLoaded    -1
  45. #define NoCryptoType    -1
  46. #define NoCryptoMode    -1
  47. #define NO_MECHANISM    0xFFFFFFFFL
  48. /*Get the Fortezza context in here*/
  49. int InitSocket (FortezzaSocket *inSocket, int inSlotID);
  50. int FreeSocket (FortezzaSocket *inSocket);
  51. int FetchPersonalityList (FortezzaSocket *inSocket);
  52. int UnloadPersonalityList(FortezzaSocket *inSocket);
  53. int LoginToSocket (FortezzaSocket *inSocket, int inUserType, CI_PIN inPin); 
  54. int LogoutFromSocket (FortezzaSocket *inSocket);
  55. PRBool SocketStateUnchanged(FortezzaSocket* inSocket);
  56. int GetBestKeyRegister(FortezzaSocket *inSocket);
  57. FortezzaKey *NewFortezzaKey(FortezzaSocket  *inSocket, 
  58.     FortezzaKeyType  inKeyType,
  59.     CreateTEKInfo   *TEKinfo,
  60.     int              inKeyRegister);
  61. FortezzaKey *NewUnwrappedKey(int inKeyRegister, int i, 
  62.      FortezzaSocket *inSocket);
  63. int  LoadKeyIntoRegister (FortezzaKey *inKey);
  64. int  SetFortezzaKeyHandle (FortezzaKey *inKey, CK_OBJECT_HANDLE inHandle);
  65. void RemoveKey (FortezzaKey *inKey);
  66. void InitContext(FortezzaContext *inContext, FortezzaSocket *inSocket,
  67.  CK_OBJECT_HANDLE hKey);
  68. int InitCryptoOperation (FortezzaContext *inContext, 
  69.  CryptoType inCryptoOperation);
  70. int EndCryptoOperation  (FortezzaContext *inContext, 
  71.  CryptoType inCryptoOperation);
  72. CryptoType GetCryptoOperation (FortezzaContext *inContext);
  73. int EncryptData (FortezzaContext *inContext, CK_BYTE_PTR inData,
  74.  CK_ULONG inDataLen, CK_BYTE_PTR inDest, 
  75.  CK_ULONG inDestLen);
  76. int DecryptData (FortezzaContext *inContext, CK_BYTE_PTR inData,
  77.  CK_ULONG inDataLen, CK_BYTE_PTR inDest, 
  78.  CK_ULONG inDestLen);
  79. int SaveState (FortezzaContext *inContext, CI_IV inIV, 
  80.        PK11Session *inSession, FortezzaKey *inKey,
  81.        int inCryptoType, CK_MECHANISM_TYPE inMechanism);
  82. int WrapKey (FortezzaKey *wrappingKey, FortezzaKey *srcKey,
  83.      CK_BYTE_PTR pDest, CK_ULONG ulDestLen);
  84. int UnwrapKey (CK_BYTE_PTR inWrappedKey, FortezzaKey *inKey);
  85. #endif /*SOCKET_H_*/