andre@0: /* This Source Code Form is subject to the terms of the Mozilla Public andre@0: * License, v. 2.0. If a copy of the MPL was not distributed with this andre@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ andre@0: andre@0: #ifndef PKIT_H andre@0: #include "pkit.h" andre@0: #endif /* PKIT_H */ andre@0: andre@0: #ifndef PKIM_H andre@0: #include "pkim.h" andre@0: #endif /* PKIM_H */ andre@0: andre@0: /* This is defined in pki3hack.c */ andre@0: NSS_EXTERN nssDecodedCert * andre@0: nssDecodedPKIXCertificate_Create ( andre@0: NSSArena *arenaOpt, andre@0: NSSDER *encoding andre@0: ); andre@0: andre@0: NSS_IMPLEMENT PRStatus andre@0: nssDecodedPKIXCertificate_Destroy ( andre@0: nssDecodedCert *dc andre@0: ); andre@0: andre@0: NSS_IMPLEMENT nssDecodedCert * andre@0: nssDecodedCert_Create ( andre@0: NSSArena *arenaOpt, andre@0: NSSDER *encoding, andre@0: NSSCertificateType type andre@0: ) andre@0: { andre@0: nssDecodedCert *rvDC = NULL; andre@0: switch(type) { andre@0: case NSSCertificateType_PKIX: andre@0: rvDC = nssDecodedPKIXCertificate_Create(arenaOpt, encoding); andre@0: break; andre@0: default: andre@0: #if 0 andre@0: nss_SetError(NSS_ERROR_INVALID_ARGUMENT); andre@0: #endif andre@0: return (nssDecodedCert *)NULL; andre@0: } andre@0: return rvDC; andre@0: } andre@0: andre@0: NSS_IMPLEMENT PRStatus andre@0: nssDecodedCert_Destroy ( andre@0: nssDecodedCert *dc andre@0: ) andre@0: { andre@0: if (!dc) { andre@0: return PR_FAILURE; andre@0: } andre@0: switch(dc->type) { andre@0: case NSSCertificateType_PKIX: andre@0: return nssDecodedPKIXCertificate_Destroy(dc); andre@0: default: andre@0: #if 0 andre@0: nss_SetError(NSS_ERROR_INVALID_ARGUMENT); andre@0: #endif andre@0: break; andre@0: } andre@0: return PR_FAILURE; andre@0: } andre@0: