1999-07-17 00:31:18 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1999-07-17 00:31:18 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* 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.
|
1999-07-17 00:31:18 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-07-17 00:31:18 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
2000-02-10 07:56:56 +03:00
|
|
|
* Copyright (C) 1998-2000 Netscape Communications Corporation. All
|
1999-11-06 06:43:54 +03:00
|
|
|
* Rights Reserved.
|
|
|
|
*
|
1999-11-12 01:10:36 +03:00
|
|
|
* Contributor(s):
|
2000-02-10 07:56:56 +03:00
|
|
|
* Norris Boyd
|
2000-03-21 07:05:35 +03:00
|
|
|
* Mitch Stoltz
|
1999-07-17 00:31:18 +04:00
|
|
|
*/
|
1999-11-12 01:10:36 +03:00
|
|
|
|
|
|
|
/* describes principals for use with signed scripts */
|
|
|
|
|
1999-07-24 07:58:23 +04:00
|
|
|
#ifndef _NS_CERTIFICATE_PRINCIPAL_H_
|
|
|
|
#define _NS_CERTIFICATE_PRINCIPAL_H_
|
1999-08-20 13:51:02 +04:00
|
|
|
#include "jsapi.h"
|
1999-09-01 04:54:35 +04:00
|
|
|
#include "nsICertificatePrincipal.h"
|
1999-11-12 01:10:36 +03:00
|
|
|
#include "nsBasePrincipal.h"
|
1999-07-17 00:31:18 +04:00
|
|
|
|
2000-03-21 07:05:35 +03:00
|
|
|
class nsIURI;
|
|
|
|
|
1999-08-20 13:51:02 +04:00
|
|
|
#define NS_CERTIFICATEPRINCIPALMANAGER_CID \
|
|
|
|
{ 0x7ee2a4c0, 0x4b91, 0x11d3, \
|
|
|
|
{ 0xba, 0x18, 0x00, 0x60, 0xb0, 0xf1, 0x99, 0xa2 }}
|
|
|
|
|
2000-03-21 07:05:35 +03:00
|
|
|
class nsCertificatePrincipal : public nsICertificatePrincipal, public nsBasePrincipal
|
|
|
|
{
|
1999-07-17 00:31:18 +04:00
|
|
|
public:
|
1999-08-20 13:51:02 +04:00
|
|
|
|
1999-08-22 00:22:27 +04:00
|
|
|
NS_DEFINE_STATIC_CID_ACCESSOR(NS_CERTIFICATEPRINCIPALMANAGER_CID)
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICERTIFICATEPRINCIPAL
|
1999-07-24 07:58:23 +04:00
|
|
|
|
1999-11-12 01:10:36 +03:00
|
|
|
NS_IMETHOD ToString(char **result);
|
|
|
|
|
2000-02-10 07:56:56 +03:00
|
|
|
NS_IMETHOD ToUserVisibleString(char **result);
|
2000-05-16 07:40:51 +04:00
|
|
|
|
|
|
|
NS_IMETHOD GetPreferences(char** aPrefName, char** aID,
|
|
|
|
char** aGrantedList, char** aDeniedList);
|
|
|
|
|
1999-11-12 01:10:36 +03:00
|
|
|
NS_IMETHOD Equals(nsIPrincipal *other, PRBool *result);
|
|
|
|
|
|
|
|
NS_IMETHOD HashValue(PRUint32 *result);
|
|
|
|
|
|
|
|
NS_IMETHOD CanEnableCapability(const char *capability, PRInt16 *result);
|
|
|
|
|
2000-04-26 07:50:07 +04:00
|
|
|
NS_IMETHOD Init(const char* aCertificateID);
|
2000-01-19 00:54:01 +03:00
|
|
|
|
2000-05-16 07:40:51 +04:00
|
|
|
nsresult InitFromPersistent(const char* aPrefName, const char* aID,
|
|
|
|
const char* aGrantedList, const char* aDeniedList);
|
|
|
|
|
2000-01-19 00:54:01 +03:00
|
|
|
nsCertificatePrincipal();
|
1999-11-12 01:10:36 +03:00
|
|
|
|
1999-07-24 07:58:23 +04:00
|
|
|
virtual ~nsCertificatePrincipal(void);
|
1999-07-17 00:31:18 +04:00
|
|
|
|
|
|
|
protected:
|
2000-04-26 07:50:07 +04:00
|
|
|
char* mCertificateID;
|
|
|
|
char* mCommonName;
|
1999-07-17 00:31:18 +04:00
|
|
|
};
|
|
|
|
|
1999-07-24 07:58:23 +04:00
|
|
|
#endif // _NS_CERTIFICATE_PRINCIPAL_H_
|