/* * 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) 2000 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * Ian McGreer * Javier Delgadillo * * 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 _NS_NSSCERTIFICATE_H_ #define _NS_NSSCERTIFICATE_H_ #include "nsIX509Cert.h" #include "nsIX509CertDB.h" #include "nsIASN1Object.h" #include "nsISMimeCert.h" #include "nsNSSShutDown.h" #include "nsNSSCertHeader.h" class nsINSSComponent; class nsIASN1Sequence; /* Certificate */ class nsNSSCertificate : public nsIX509Cert, public nsISMimeCert, public nsNSSShutDownObject { public: NS_DECL_ISUPPORTS NS_DECL_NSIX509CERT NS_DECL_NSISMIMECERT nsNSSCertificate(CERTCertificate *cert); /* from a request? */ virtual ~nsNSSCertificate(); CERTCertificate *GetCert(); nsresult MarkForPermDeletion(); nsresult SetCertType(PRUint32 aCertType); nsresult GetCertType(PRUint32 *aCertType); nsresult FormatUIStrings(const nsAutoString &nickname, nsAutoString &nickWithSerial, nsAutoString &details); static nsNSSCertificate* ConstructFromDER(char *certDER, int derLen); static char* defaultServerNickname(CERTCertificate* cert); private: CERTCertificate *mCert; PRBool mPermDelete; PRUint32 mCertType; nsCOMPtr mASN1Structure; nsresult CreateASN1Struct(); nsresult CreateTBSCertificateASN1Struct(nsIASN1Sequence **retSequence, nsINSSComponent *nssComponent); nsresult GetSortableDate(PRTime aTime, nsAString &_aSortableDate); virtual void virtualDestroyNSSReference(); void destructorSafeDestroyNSSReference(); }; #define NS_NSS_LONG 4 #define NS_NSS_GET_LONG(x) ((((unsigned long)((x)[0])) << 24) | \ (((unsigned long)((x)[1])) << 16) | \ (((unsigned long)((x)[2])) << 8) | \ ((unsigned long)((x)[3])) ) #define NS_NSS_PUT_LONG(src,dest) (dest)[0] = (((src) >> 24) & 0xff); \ (dest)[1] = (((src) >> 16) & 0xff); \ (dest)[2] = (((src) >> 8) & 0xff); \ (dest)[3] = ((src) & 0xff); #endif /* _NS_NSSCERTIFICATE_H_ */