PHP 8.2.30
Preview: chain.js Size: 2.46 KB
//opt/alt/alt-nodejs19/root/lib/node_modules/npm/node_modules/sigstore/dist/ca/verify/chain.js

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.verifyChain = void 0;
/*
Copyright 2022 The Sigstore Authors.

Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const error_1 = require("../../error");
const cert_1 = require("../../x509/cert");
const verify_1 = require("../../x509/verify");
function verifyChain(bundleCerts, certificateAuthorities) {
    const certs = parseCerts(bundleCerts);
    const signingCert = certs[0];
    // Filter the list of certificate authorities to those which are valid for the
    // signing certificate's notBefore date.
    const validCAs = filterCertificateAuthorities(certificateAuthorities, signingCert.notBefore);
    if (validCAs.length === 0) {
        throw new error_1.VerificationError('No valid certificate authorities');
    }
    let trustedChain = [];
    // Loop through all valid CAs and attempt to verify the certificate chain
    const verified = validCAs.find((ca) => {
        const trustedCerts = parseCerts(ca.certChain?.certificates || []);
        try {
            trustedChain = (0, verify_1.verifyCertificateChain)({
                trustedCerts,
                certs,
                validAt: signingCert.notBefore,
            });
            return true;
        }
        catch (e) {
            return false;
        }
    });
    if (!verified) {
        throw new error_1.VerificationError('No valid certificate chain');
    }
    return trustedChain;
}
exports.verifyChain = verifyChain;
// Filter the list of certificate authorities to those which are valid for the
// given date.
function filterCertificateAuthorities(certificateAuthorities, validAt) {
    return certificateAuthorities.filter((ca) => ca.validFor &&
        ca.validFor.start &&
        ca.validFor.start <= validAt &&
        (!ca.validFor.end || validAt <= ca.validFor.end));
}
// Parse the raw bytes of a certificate into an x509Certificate object.
function parseCerts(certs) {
    return certs.map((cert) => cert_1.x509Certificate.parse(cert.rawBytes));
}

Directory Contents

Dirs: 0 × Files: 8

Name Size Perms Modified Actions
255 B lrw-r--r-- 2023-12-06 18:07:52
Edit Download
2.46 KB lrw-r--r-- 2023-12-06 18:07:52
Edit Download
235 B lrw-r--r-- 2023-12-06 18:07:52
Edit Download
1.03 KB lrw-r--r-- 2023-12-06 18:07:52
Edit Download
284 B lrw-r--r-- 2023-12-06 18:07:52
Edit Download
1.25 KB lrw-r--r-- 2023-12-06 18:07:52
Edit Download
227 B lrw-r--r-- 2023-12-06 18:07:52
Edit Download
5.41 KB lrw-r--r-- 2023-12-06 18:07:52
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).