Bug 1012875: Expire pins in 8 weeks once they reach stable (r=keeler)

This commit is contained in:
Monica Chew 2014-07-02 11:34:04 -07:00
Родитель a11c39b680
Коммит cf58305707
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -998,4 +998,4 @@ static const int kPublicKeyPinningPreloadListLength = 322;
static const int32_t kUnknownId = -1;
static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1414009276397000);
static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1412793196147000);

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

@ -33,8 +33,8 @@ const SHA1_PREFIX = "sha1/";
const SHA256_PREFIX = "sha256/";
const GOOGLE_PIN_PREFIX = "GOOGLE_PIN_";
// Pins expire in 18 weeks
const PINNING_MINIMUM_REQUIRED_MAX_AGE = 60 * 60 * 24 * 7 * 18;
// Pins expire in 14 weeks (6 weeks on Beta + 8 weeks on stable)
const PINNING_MINIMUM_REQUIRED_MAX_AGE = 60 * 60 * 24 * 7 * 14;
const FILE_HEADER = "/* This Source Code Form is subject to the terms of the Mozilla Public\n" +
" * License, v. 2.0. If a copy of the MPL was not distributed with this\n" +