Autogenerated with:
cp dom/.clang-format security/ && mach format security/**.{cpp,h,mm}
Manual changes:
* Missing includes in CRLiteTimestamp.h and AppSignatureVerification.h
* TestConfigHelpers.cpp needs to include a header last to avoid redefined
macro errors from gtest.
* Manual tweaks suggested my Jed.
Differential Revision: https://phabricator.services.mozilla.com/D311690
75 lines
1.5 KiB
C++
75 lines
1.5 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsNSSVersion.h"
|
|
|
|
#include "nsString.h"
|
|
#include "nss.h"
|
|
#include "nssutil.h"
|
|
#include "prinit.h"
|
|
#include "smime.h"
|
|
#include "ssl.h"
|
|
|
|
NS_IMPL_ISUPPORTS(nsNSSVersion, nsINSSVersion)
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSVersion::GetNSPR_Version(nsAString& v) {
|
|
v.AssignASCII(PR_GetVersion());
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSVersion::GetNSS_Version(nsAString& v) {
|
|
v.AssignASCII(NSS_GetVersion());
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSVersion::GetNSSUTIL_Version(nsAString& v) {
|
|
v.AssignASCII(NSSUTIL_GetVersion());
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSVersion::GetNSSSSL_Version(nsAString& v) {
|
|
v.AssignASCII(NSSSSL_GetVersion());
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSVersion::GetNSSSMIME_Version(nsAString& v) {
|
|
v.AssignASCII(NSSSMIME_GetVersion());
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSVersion::GetNSPR_MinVersion(nsAString& v) {
|
|
v.AssignLiteral(PR_VERSION);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSVersion::GetNSS_MinVersion(nsAString& v) {
|
|
v.AssignLiteral(NSS_VERSION);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSVersion::GetNSSUTIL_MinVersion(nsAString& v) {
|
|
v.AssignLiteral(NSSUTIL_VERSION);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSVersion::GetNSSSSL_MinVersion(nsAString& v) {
|
|
v.AssignLiteral(NSS_VERSION);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsNSSVersion::GetNSSSMIME_MinVersion(nsAString& v) {
|
|
v.AssignLiteral(NSS_VERSION);
|
|
return NS_OK;
|
|
}
|