/usr/include/thunderbird/nsISSLStatus.h is in thunderbird-dev 1:52.8.0-1~deb8u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsISSLStatus.idl
*/
#ifndef __gen_nsISSLStatus_h__
#define __gen_nsISSLStatus_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIX509Cert; /* forward declaration */
/* starting interface: nsISSLStatus */
#define NS_ISSLSTATUS_IID_STR "fa9ba95b-ca3b-498a-b889-7c79cf28fee8"
#define NS_ISSLSTATUS_IID \
{0xfa9ba95b, 0xca3b, 0x498a, \
{ 0xb8, 0x89, 0x7c, 0x79, 0xcf, 0x28, 0xfe, 0xe8 }}
class NS_NO_VTABLE nsISSLStatus : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISSLSTATUS_IID)
/* readonly attribute nsIX509Cert serverCert; */
NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert) = 0;
/* readonly attribute ACString cipherName; */
NS_IMETHOD GetCipherName(nsACString & aCipherName) = 0;
/* readonly attribute unsigned long keyLength; */
NS_IMETHOD GetKeyLength(uint32_t *aKeyLength) = 0;
/* readonly attribute unsigned long secretKeyLength; */
NS_IMETHOD GetSecretKeyLength(uint32_t *aSecretKeyLength) = 0;
enum {
SSL_VERSION_3 = 0,
TLS_VERSION_1 = 1,
TLS_VERSION_1_1 = 2,
TLS_VERSION_1_2 = 3,
TLS_VERSION_1_3 = 4
};
/* readonly attribute unsigned short protocolVersion; */
NS_IMETHOD GetProtocolVersion(uint16_t *aProtocolVersion) = 0;
enum {
CERTIFICATE_TRANSPARENCY_NOT_APPLICABLE = 0,
CERTIFICATE_TRANSPARENCY_NONE = 1,
CERTIFICATE_TRANSPARENCY_OK = 2,
CERTIFICATE_TRANSPARENCY_UNKNOWN_LOG = 3,
CERTIFICATE_TRANSPARENCY_INVALID = 4
};
/* readonly attribute unsigned short certificateTransparencyStatus; */
NS_IMETHOD GetCertificateTransparencyStatus(uint16_t *aCertificateTransparencyStatus) = 0;
/* readonly attribute boolean isDomainMismatch; */
NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch) = 0;
/* readonly attribute boolean isNotValidAtThisTime; */
NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime) = 0;
/* readonly attribute boolean isUntrusted; */
NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted) = 0;
/* readonly attribute boolean isExtendedValidation; */
NS_IMETHOD GetIsExtendedValidation(bool *aIsExtendedValidation) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsISSLStatus, NS_ISSLSTATUS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISSLSTATUS \
NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert) override; \
NS_IMETHOD GetCipherName(nsACString & aCipherName) override; \
NS_IMETHOD GetKeyLength(uint32_t *aKeyLength) override; \
NS_IMETHOD GetSecretKeyLength(uint32_t *aSecretKeyLength) override; \
NS_IMETHOD GetProtocolVersion(uint16_t *aProtocolVersion) override; \
NS_IMETHOD GetCertificateTransparencyStatus(uint16_t *aCertificateTransparencyStatus) override; \
NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch) override; \
NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime) override; \
NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted) override; \
NS_IMETHOD GetIsExtendedValidation(bool *aIsExtendedValidation) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSISSLSTATUS \
NS_METHOD GetServerCert(nsIX509Cert * *aServerCert); \
NS_METHOD GetCipherName(nsACString & aCipherName); \
NS_METHOD GetKeyLength(uint32_t *aKeyLength); \
NS_METHOD GetSecretKeyLength(uint32_t *aSecretKeyLength); \
NS_METHOD GetProtocolVersion(uint16_t *aProtocolVersion); \
NS_METHOD GetCertificateTransparencyStatus(uint16_t *aCertificateTransparencyStatus); \
NS_METHOD GetIsDomainMismatch(bool *aIsDomainMismatch); \
NS_METHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime); \
NS_METHOD GetIsUntrusted(bool *aIsUntrusted); \
NS_METHOD GetIsExtendedValidation(bool *aIsExtendedValidation);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISSLSTATUS(_to) \
NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert) override { return _to GetServerCert(aServerCert); } \
NS_IMETHOD GetCipherName(nsACString & aCipherName) override { return _to GetCipherName(aCipherName); } \
NS_IMETHOD GetKeyLength(uint32_t *aKeyLength) override { return _to GetKeyLength(aKeyLength); } \
NS_IMETHOD GetSecretKeyLength(uint32_t *aSecretKeyLength) override { return _to GetSecretKeyLength(aSecretKeyLength); } \
NS_IMETHOD GetProtocolVersion(uint16_t *aProtocolVersion) override { return _to GetProtocolVersion(aProtocolVersion); } \
NS_IMETHOD GetCertificateTransparencyStatus(uint16_t *aCertificateTransparencyStatus) override { return _to GetCertificateTransparencyStatus(aCertificateTransparencyStatus); } \
NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch) override { return _to GetIsDomainMismatch(aIsDomainMismatch); } \
NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime) override { return _to GetIsNotValidAtThisTime(aIsNotValidAtThisTime); } \
NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted) override { return _to GetIsUntrusted(aIsUntrusted); } \
NS_IMETHOD GetIsExtendedValidation(bool *aIsExtendedValidation) override { return _to GetIsExtendedValidation(aIsExtendedValidation); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSISSLSTATUS(_to) \
NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetServerCert(aServerCert); } \
NS_IMETHOD GetCipherName(nsACString & aCipherName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCipherName(aCipherName); } \
NS_IMETHOD GetKeyLength(uint32_t *aKeyLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetKeyLength(aKeyLength); } \
NS_IMETHOD GetSecretKeyLength(uint32_t *aSecretKeyLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSecretKeyLength(aSecretKeyLength); } \
NS_IMETHOD GetProtocolVersion(uint16_t *aProtocolVersion) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProtocolVersion(aProtocolVersion); } \
NS_IMETHOD GetCertificateTransparencyStatus(uint16_t *aCertificateTransparencyStatus) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCertificateTransparencyStatus(aCertificateTransparencyStatus); } \
NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsDomainMismatch(aIsDomainMismatch); } \
NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsNotValidAtThisTime(aIsNotValidAtThisTime); } \
NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsUntrusted(aIsUntrusted); } \
NS_IMETHOD GetIsExtendedValidation(bool *aIsExtendedValidation) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsExtendedValidation(aIsExtendedValidation); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsSSLStatus : public nsISSLStatus
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISSLSTATUS
nsSSLStatus();
private:
~nsSSLStatus();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsSSLStatus, nsISSLStatus)
nsSSLStatus::nsSSLStatus()
{
/* member initializers and constructor code */
}
nsSSLStatus::~nsSSLStatus()
{
/* destructor code */
}
/* readonly attribute nsIX509Cert serverCert; */
NS_IMETHODIMP nsSSLStatus::GetServerCert(nsIX509Cert * *aServerCert)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute ACString cipherName; */
NS_IMETHODIMP nsSSLStatus::GetCipherName(nsACString & aCipherName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long keyLength; */
NS_IMETHODIMP nsSSLStatus::GetKeyLength(uint32_t *aKeyLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long secretKeyLength; */
NS_IMETHODIMP nsSSLStatus::GetSecretKeyLength(uint32_t *aSecretKeyLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned short protocolVersion; */
NS_IMETHODIMP nsSSLStatus::GetProtocolVersion(uint16_t *aProtocolVersion)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned short certificateTransparencyStatus; */
NS_IMETHODIMP nsSSLStatus::GetCertificateTransparencyStatus(uint16_t *aCertificateTransparencyStatus)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isDomainMismatch; */
NS_IMETHODIMP nsSSLStatus::GetIsDomainMismatch(bool *aIsDomainMismatch)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isNotValidAtThisTime; */
NS_IMETHODIMP nsSSLStatus::GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isUntrusted; */
NS_IMETHODIMP nsSSLStatus::GetIsUntrusted(bool *aIsUntrusted)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isExtendedValidation; */
NS_IMETHODIMP nsSSLStatus::GetIsExtendedValidation(bool *aIsExtendedValidation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsISSLStatus_h__ */
|