secoid.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 _SECOID_H_
  34. #define _SECOID_H_
  35. /*
  36.  * secoid.h - public data structures and prototypes for ASN.1 OID functions
  37.  *
  38.  * $Id: secoid.h,v 1.1 2000/03/31 19:40:33 relyea%netscape.com Exp $
  39.  */
  40. #include "plarena.h"
  41. #include "seccomon.h"
  42. #include "secoidt.h"
  43. #include "secasn1t.h"
  44. extern const SEC_ASN1Template SECOID_AlgorithmIDTemplate[];
  45. SEC_BEGIN_PROTOS
  46. /*
  47.  * OID handling routines
  48.  */
  49. extern SECOidData *SECOID_FindOID(SECItem *oid);
  50. extern SECOidTag SECOID_FindOIDTag(SECItem *oid);
  51. extern SECOidData *SECOID_FindOIDByTag(SECOidTag tagnum);
  52. extern SECOidData *SECOID_FindOIDByMechanism(unsigned long mechanism);
  53. /****************************************/
  54. /*
  55. ** Algorithm id handling operations
  56. */
  57. /*
  58. ** Fill in an algorithm-ID object given a tag and some parameters.
  59. **  "aid" where the DER encoded algorithm info is stored (memory
  60. **    is allocated)
  61. ** "tag" the tag defining the algorithm (SEC_OID_*)
  62. ** "params" if not NULL, the parameters to go with the algorithm
  63. */
  64. extern SECStatus SECOID_SetAlgorithmID(PRArenaPool *arena, SECAlgorithmID *aid,
  65.    SECOidTag tag, SECItem *params);
  66. /*
  67. ** Copy the "src" object to "dest". Memory is allocated in "dest" for
  68. ** each of the appropriate sub-objects. Memory in "dest" is not freed
  69. ** before memory is allocated (use SECOID_DestroyAlgorithmID(dest, PR_FALSE)
  70. ** to do that).
  71. */
  72. extern SECStatus SECOID_CopyAlgorithmID(PRArenaPool *arena, SECAlgorithmID *dest,
  73.     SECAlgorithmID *src);
  74. /*
  75. ** Get the SEC_OID_* tag for the given algorithm-id object.
  76. */
  77. extern SECOidTag SECOID_GetAlgorithmTag(SECAlgorithmID *aid);
  78. /*
  79. ** Destroy an algorithm-id object.
  80. ** "aid" the certificate-request to destroy
  81. ** "freeit" if PR_TRUE then free the object as well as its sub-objects
  82. */
  83. extern void SECOID_DestroyAlgorithmID(SECAlgorithmID *aid, PRBool freeit);
  84. /*
  85. ** Compare two algorithm-id objects, returning the difference between
  86. ** them.
  87. */
  88. extern SECComparison SECOID_CompareAlgorithmID(SECAlgorithmID *a,
  89.    SECAlgorithmID *b);
  90. extern PRBool SECOID_KnownCertExtenOID (SECItem *extenOid);
  91. /* Given a SEC_OID_* tag, return a string describing it.
  92.  */
  93. extern const char *SECOID_FindOIDTagDescription(SECOidTag tagnum);
  94. SEC_END_PROTOS
  95. #endif /* _SECOID_H_ */