Bug 1011269: Forgot to qref to pick up keeler's changes (r=keeler)

This commit is contained in:
Monica Chew 2014-05-19 13:24:41 -07:00
Родитель 715f351f2b
Коммит 88108c8e9f
4 изменённых файлов: 16 добавлений и 12 удалений

Просмотреть файл

@ -188,8 +188,8 @@ SECStatus chainValidationCallback(void* state, const CERTCertList* certList,
}
}
const bool enforceTestMode = (callbackState->pinningEnforcementLevel ==
CertVerifier::pinningEnforceTestMode);
bool enforceTestMode = (callbackState->pinningEnforcementLevel ==
CertVerifier::pinningEnforceTestMode);
*chainOK = PublicKeyPinningService::
ChainHasValidPins(certList, callbackState->hostname, callbackState->time,
enforceTestMode);

Просмотреть файл

@ -14,15 +14,15 @@ class PublicKeyPinningService
{
public:
/**
* Returns true if the given (host, certList) passes pinning checks,
* false otherwise. If the host is pinned, return true if one of the keys in
* the given certificate chain matches the pin set specified by the
* hostname. If the hostname is null or empty evaluate against all the
* possible names for the EE cert (Common Name (CN) plus all DNS Name:
* subject Alt Name entries). The certList's head is the EE cert and the
* tail is the trust anchor.
* Note: if an alt name is a wildcard, it won't necessarily find a pinset
* that would otherwise be valid for it
* Returns true if the given (host, certList) passes pinning checks,
* false otherwise. If the host is pinned, return true if one of the keys in
* the given certificate chain matches the pin set specified by the
* hostname. If the hostname is null or empty evaluate against all the
* possible names for the EE cert (Common Name (CN) plus all DNS Name:
* subject Alt Name entries). The certList's head is the EE cert and the
* tail is the trust anchor.
* Note: if an alt name is a wildcard, it won't necessarily find a pinset
* that would otherwise be valid for it
*/
static bool ChainHasValidPins(const CERTCertList* certList,
const char* hostname,

Просмотреть файл

@ -1000,6 +1000,9 @@ void nsNSSComponent::setValidationOptions(bool isInitialSetting,
static_cast<CertVerifier::pinning_enforcement_config>
(Preferences::GetInt("security.cert_pinning.enforcement_level",
CertVerifier::pinningDisabled));
if (pinningEnforcementLevel > CertVerifier::pinningEnforceTestMode) {
pinningEnforcementLevel = CertVerifier::pinningDisabled;
}
CertVerifier::ocsp_download_config odc;
CertVerifier::ocsp_strict_config osc;

Просмотреть файл

@ -30,7 +30,8 @@ const certdb = Cc["@mozilla.org/security/x509certdb;1"]
function test_strict() {
// In strict mode, we always evaluate pinning data, regardless of whether the
// issuer is a built-in trust anchor.
// issuer is a built-in trust anchor. We only enforce pins that are not in
// test mode.
add_test(function() {
Services.prefs.setIntPref("security.cert_pinning.enforcement_level", 2);
run_next_test();