pkixm.h
来自「支持SSL v2/v3, TLS, PKCS #5, PKCS #7, PKCS」· C头文件 代码 · 共 970 行 · 第 1/2 页
H
970 行
/* * The contents of this file are subject to the Mozilla Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is the Netscape security libraries. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1994-2000 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the * terms of the GNU General Public License Version 2 or later (the * "GPL"), in which case the provisions of the GPL are applicable * instead of those above. If you wish to allow use of your * version of this file only under the terms of the GPL and not to * allow others to use your version of this file under the MPL, * indicate your decision by deleting the provisions above and * replace them with the notice and other provisions required by * the GPL. If you do not delete the provisions above, a recipient * may use your version of this file under either the MPL or the * GPL. */#ifndef PKIXM_H#define PKIXM_H#ifdef DEBUGstatic const char PKIXM_CVS_ID[] = "@(#) $Source: /cvsroot/mozilla/security/nss/lib/pkix/include/pkixm.h,v $ $Revision: 1.1 $ $Date: 2000/03/31 19:03:32 $ $Name: NSS_3_1_1_RTM $";#endif /* DEBUG *//* * pkixm.h * * This file contains the private type definitions for the * PKIX part-1 objects. Mostly, this file contains the actual * structure definitions for the NSSPKIX types declared in nsspkixt.h. */#ifndef PKIXTM_H#include "pkixtm.h"#endif /* PKIXTM_H */#ifndef PKIX_H#include "pkix.h"#endif /* PKIX_H */PR_BEGIN_EXTERN_C/* * nss_pkix_Attribute_v_create * * * The error may be one of the following values: * NSS_ERROR_NO_MEMORY * NSS_ERROR_INVALID_ARENA * NSS_ERROR_INVALID_OID * NSS_ERROR_INVALID_ITEM * * Return value: * A valid pointer to an NSSPKIXAttribute upon success * NULL upon failure. */NSS_EXTERN NSSPKIXAttribute *nss_pkix_Attribute_v_create( NSSArena *arenaOpt, NSSPKIXAttributeType *typeOid, PRUint32 count, va_list ap);#ifdef DEBUG/* * nss_pkix_Attribute_add_pointer * * This method is only present in debug builds. * * This module-private routine adds an NSSPKIXAttribute pointer to * the internal pointer-tracker. This routine should only be used * by the NSSPKIX module. This routine returns a PRStatus value; * upon error it will place an error on the error stack and return * PR_FAILURE. * * The error may be one of the following values: * NSS_ERROR_NO_MEMORY * NSS_ERROR_INTERNAL_ERROR * * Return value: * PR_SUCCESS upon success * PR_FAILURE upon failure */NSS_EXTERN PRStatusnss_pkix_Attribute_add_pointer( const NSSPKIXAttribute *p);/* * nss_pkix_Attribute_remove_pointer * * This method is only present in debug builds. * * This module-private routine removes a valid NSSPKIXAttribute * pointer from the internal pointer-tracker. This routine should * only be used by the NSSPKIX module. This routine returns a * PRStatus value; upon error it will place an error on the error * stack and return PR_FAILURE. * * The error may be one of the following values: * NSS_ERROR_INTERNAL_ERROR * * Return value: * PR_SUCCESS upon success * PR_FAILURE upon failure */NSS_EXTERN PRStatusnss_pkix_Attribute_remove_pointer( const NSSPKIXAttribute *p);#endif /* DEBUG */#ifdef DEBUGNSS_EXTERN PRStatusnss_pkix_AttributeTypeAndValue_add_pointer( const NSSPKIXAttributeTypeAndValue *p);NSS_EXTERN PRStatusnss_pkix_AttributeTypeAndValue_remove_pointer( const NSSPKIXAttributeTypeAndValue *p);#endif /* DEBUG *//* * nss_pkix_X520Name_DoUTF8 * */NSS_EXTERN PR_STATUSnss_pkix_X520Name_DoUTF8( NSSPKIXX520Name *name);#ifdef DEBUGNSS_EXTERN PRStatusnss_pkix_X520Name_add_pointer( const NSSPKIXX520Name *p);NSS_EXTERN PRStatusnss_pkix_X520Name_remove_pointer( const NSSPKIXX520Name *p);#endif /* DEBUG *//* * nss_pkix_X520CommonName_DoUTF8 * */NSS_EXTERN PR_STATUSnss_pkix_X520CommonName_DoUTF8( NSSPKIXX520CommonName *name);#ifdef DEBUGNSS_EXTERN PRStatusnss_pkix_X520CommonName_add_pointer( const NSSPKIXX520CommonName *p);NSS_EXTERN PRStatusnss_pkix_X520CommonName_remove_pointer( const NSSPKIXX520CommonName *p);NSS_EXTERN PRStatusnss_pkix_Name_add_pointer( const NSSPKIXName *p);NSS_EXTERN PRStatusnss_pkix_Name_remove_pointer( const NSSPKIXName *p);/* * nss_pkix_RDNSequence_v_create */NSS_EXTERN NSSPKIXRDNSequence *nss_pkix_RDNSequence_v_create( NSSArena *arenaOpt, PRUint32 count, va_list ap);/* * nss_pkix_RDNSequence_Clear * * Wipes out cached data. */NSS_EXTERN PRStatusnss_pkix_RDNSequence_Clear( NSSPKIXRDNSequence *rdnseq);#ifdef DEBUG#ifdef NSSDEBUGNSS_EXTERN PRStatusnss_pkix_RDNSequence_register( NSSPKIXRDNSequence *rdnseq);NSS_EXTERN PRStatusnss_pkix_RDNSequence_deregister( NSSPKIXRDNSequence *rdnseq);#endif /* NSSDEBUG */NSS_EXTERN PRStatusnss_pkix_RDNSequence_add_pointer( const NSSPKIXRDNSequence *p);NSS_EXTERN PRStatusnss_pkix_RDNSequence_remove_pointer( const NSSPKIXRDNSequence *p);#endif /* DEBUG *//* * nss_pkix_RelativeDistinguishedName_v_create * * * The error may be one of the following values: * NSS_ERROR_NO_MEMORY * NSS_ERROR_INVALID_ARENA * NSS_ERROR_INVALID_OID * NSS_ERROR_INVALID_ITEM * * Return value: * A valid pointer to an NSSPKIXRelativeDistinguishedName upon success * NULL upon failure. */NSS_EXTERN NSSPKIXRelativeDistinguishedName *nss_pkix_RelativeDistinguishedName_V_Create( NSSArena *arenaOpt, PRUint32 count, va_list ap);/* * nss_pkix_RelativeDistinguishedName_Clear * * Wipes out cached data. */NSS_EXTERN PRStatusnss_pkix_RelativeDistinguishedName_Clear( NSSPKIXRelativeDistinguishedName *rdn);#ifdef DEBUG#ifdef NSSDEBUGNSS_EXTERN PRStatusnss_pkix_RelativeDistinguishedName_register( NSSPKIXRelativeDistinguishedName *rdn);NSS_EXTERN PRStatusnss_pkix_RelativeDistinguishedName_deregister( NSSPKIXRelativeDistinguishedName *rdn);#endif /* NSSDEBUG */NSS_EXTERN PRStatusnss_pkix_RelativeDistinguishedName_add_pointer( const NSSPKIXRelativeDistinguishedName *p);NSS_EXTERN PRStatusnss_pkix_RelativeDistinguishedName_remove_pointer( const NSSPKIXRelativeDistinguishedName *p);NSS_EXTERN PRStatusnss_pkix_Certificate_add_pointer( const NSSPKIXCertificate *p);NSS_EXTERN PRStatusnss_pkix_Certificate_remove_pointer( const NSSPKIXCertificate *p);NSS_EXTERN PRStatusnss_pkix_TBSCertificate_add_pointer( const NSSPKIXTBSCertificate *p);NSS_EXTERN PRStatusnss_pkix_TBSCertificate_remove_pointer( const NSSPKIXTBSCertificate *p);NSS_EXTERN PRStatusnss_pkix_Validity_add_pointer( const NSSPKIXValidity *p);NSS_EXTERN PRStatusnss_pkix_Validity_remove_pointer( const NSSPKIXValidity *p);NSS_EXTERN PRStatusnss_pkix_SubjectPublicKeyInfo_add_pointer( const NSSPKIXSubjectPublicKeyInfo *p);NSS_EXTERN PRStatusnss_pkix_SubjectPublicKeyInfo_remove_pointer( const NSSPKIXSubjectPublicKeyInfo *p);NSS_EXTERN PRStatusnss_pkix_CertificateList_add_pointer( const NSSPKIXCertificateList *p);NSS_EXTERN PRStatusnss_pkix_CertificateList_remove_pointer( const NSSPKIXCertificateList *p);NSS_EXTERN PRStatusnss_pkix_TBSCertList_add_pointer( const NSSPKIXTBSCertList *p);NSS_EXTERN PRStatusnss_pkix_TBSCertList_remove_pointer( const NSSPKIXTBSCertList *p);NSS_EXTERN PRStatusnss_pkix_revokedCertificates_add_pointer( const NSSPKIXrevokedCertificates *p);NSS_EXTERN PRStatusnss_pkix_revokedCertificates_remove_pointer( const NSSPKIXrevokedCertificates *p);NSS_EXTERN PRStatusnss_pkix_revokedCertificate_add_pointer( const NSSPKIXrevokedCertificate *p);NSS_EXTERN PRStatusnss_pkix_revokedCertificate_remove_pointer( const NSSPKIXrevokedCertificate *p);NSS_EXTERN PRStatusnss_pkix_AlgorithmIdentifier_add_pointer( const NSSPKIXAlgorithmIdentifier *p);NSS_EXTERN PRStatusnss_pkix_AlgorithmIdentifier_remove_pointer( const NSSPKIXAlgorithmIdentifier *p);NSS_EXTERN PRStatusnss_pkix_ORAddress_add_pointer( const NSSPKIXORAddress *p);NSS_EXTERN PRStatusnss_pkix_ORAddress_remove_pointer( const NSSPKIXORAddress *p);NSS_EXTERN PRStatusnss_pkix_BuiltInStandardAttributes_add_pointer( const NSSPKIXBuiltInStandardAttributes *p);NSS_EXTERN PRStatusnss_pkix_BuiltInStandardAttributes_remove_pointer( const NSSPKIXBuiltInStandardAttributes *p);NSS_EXTERN PRStatusnss_pkix_PersonalName_add_pointer( const NSSPKIXPersonalName *p);NSS_EXTERN PRStatusnss_pkix_PersonalName_remove_pointer( const NSSPKIXPersonalName *p);NSS_EXTERN PRStatus
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?