secplcy.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 __secplcy_h__
  34. #define __secplcy_h__
  35. #include "prtypes.h"
  36. /*
  37. ** Cipher policy enforcement. This code isn't very pretty, but it accomplishes
  38. ** the purpose of obscuring policy information from potential fortifiers. :-)
  39. **
  40. ** The following routines are generic and intended for anywhere where cipher
  41. ** policy enforcement is to be done, e.g. SSL and PKCS7&12.
  42. */
  43. #define SEC_CIPHER_NOT_ALLOWED 0
  44. #define SEC_CIPHER_ALLOWED 1
  45. #define SEC_CIPHER_RESTRICTED 2 /* cipher is allowed in limited cases 
  46.    e.g. step-up */
  47. /* The length of the header string for each cipher table. 
  48.    (It's the same regardless of whether we're using md5 strings or not.) */
  49. #define SEC_POLICY_HEADER_LENGTH 48
  50. /* If we're testing policy stuff, we may want to use the plaintext version */
  51. #define SEC_POLICY_USE_MD5_STRINGS 1
  52. #define SEC_POLICY_THIS_IS_THE 
  53.     "x2ax3ax51xbfx2fx71xb7x73xaaxcax6bx57x70xcdxc8x9f"
  54. #define SEC_POLICY_STRING_FOR_THE 
  55.     "x97x15xe2x70xd2x8axdexa9xe7xa7x6axe2x83xe5xb1xf6"
  56. #define SEC_POLICY_SSL_TAIL 
  57.     "x70x16x25xc0x2axb2x4axcaxb6x67xb1x89x20xdfx87xca"
  58. #define SEC_POLICY_SMIME_TAIL 
  59.     "xdfxd4xe7x2axebxc4x1bxb5xd8xe5xe0x2ax16x9fxc4xb9"
  60. #define SEC_POLICY_PKCS12_TAIL 
  61.     "x1cxf8xa4x85x4axc6x8axfexe6xcax03x72x50x1cxe2xc8"
  62. #if defined(SEC_POLICY_USE_MD5_STRINGS)
  63. /* We're not testing. 
  64.    Use md5 checksums of the strings. */
  65. #define SEC_POLICY_SSL_HEADER 
  66.     SEC_POLICY_THIS_IS_THE SEC_POLICY_STRING_FOR_THE SEC_POLICY_SSL_TAIL
  67. #define SEC_POLICY_SMIME_HEADER 
  68.     SEC_POLICY_THIS_IS_THE SEC_POLICY_STRING_FOR_THE SEC_POLICY_SMIME_TAIL
  69. #define SEC_POLICY_PKCS12_HEADER 
  70.     SEC_POLICY_THIS_IS_THE SEC_POLICY_STRING_FOR_THE SEC_POLICY_PKCS12_TAIL
  71. #else
  72. /* We're testing. 
  73.    Use plaintext versions of the strings, for testing purposes. */
  74. #define SEC_POLICY_SSL_HEADER 
  75.     "This is the string for the SSL policy table.    "
  76. #define SEC_POLICY_SMIME_HEADER 
  77.     "This is the string for the PKCS7 policy table.  "
  78. #define SEC_POLICY_PKCS12_HEADER 
  79.     "This is the string for the PKCS12 policy table. "
  80. #endif
  81. /* Local cipher tables have to have these members at the top. */
  82. typedef struct _sec_cp_struct
  83. {
  84.   char policy_string[SEC_POLICY_HEADER_LENGTH];
  85.   long unused; /* placeholder for max keybits in pkcs12 struct */
  86.   char num_ciphers;
  87.   char begin_ciphers;
  88.   /* cipher policy settings follow. each is a char. */
  89. } secCPStruct;
  90. struct SECCipherFindStr
  91. {
  92.   /* (policy) and (ciphers) are opaque to the outside world */
  93.   void *policy;
  94.   void *ciphers;
  95.   long index;
  96.   PRBool onlyAllowed;
  97. };
  98. typedef struct SECCipherFindStr SECCipherFind;
  99. SEC_BEGIN_PROTOS
  100. SECCipherFind *sec_CipherFindInit(PRBool onlyAllowed,
  101.   secCPStruct *policy,
  102.   long *ciphers);
  103. long sec_CipherFindNext(SECCipherFind *find);
  104. char sec_IsCipherAllowed(long cipher, secCPStruct *policies,
  105.  long *ciphers);
  106. void sec_CipherFindEnd(SECCipherFind *find);
  107. SEC_END_PROTOS
  108. #endif /* __SECPLCY_H__ */