Server IP : 66.29.132.122 / Your IP : 18.216.84.37 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/self/root/proc/thread-self/root/opt/alt/alt-nodejs19/root/lib/node_modules/npm/node_modules.bundled/sigstore/dist/ |
Upload File : |
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.verify = exports.attest = exports.sign = exports.DEFAULT_REKOR_URL = exports.DEFAULT_FULCIO_URL = exports.utils = void 0; /* Copyright 2023 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 ca_1 = require("./ca"); const identity_1 = __importDefault(require("./identity")); const sign_1 = require("./sign"); const tlog_1 = require("./tlog"); const tuf = __importStar(require("./tuf")); const sigstore = __importStar(require("./types/sigstore")); const util_1 = require("./util"); const verify_1 = require("./verify"); exports.utils = __importStar(require("./sigstore-utils")); exports.DEFAULT_FULCIO_URL = 'https://fulcio.sigstore.dev'; exports.DEFAULT_REKOR_URL = 'https://rekor.sigstore.dev'; function createCAClient(options) { return new ca_1.CAClient({ fulcioBaseURL: options.fulcioURL || exports.DEFAULT_FULCIO_URL, }); } function createTLogClient(options) { return new tlog_1.TLogClient({ rekorBaseURL: options.rekorURL || exports.DEFAULT_REKOR_URL, }); } const tufCacheDir = util_1.appdata.appDataPath('sigstore-js'); async function sign(payload, options = {}) { const ca = createCAClient(options); const tlog = createTLogClient(options); const idps = configureIdentityProviders(options); const signer = new sign_1.Signer({ ca, tlog, identityProviders: idps, }); const bundle = await signer.signBlob(payload); return sigstore.Bundle.toJSON(bundle); } exports.sign = sign; async function attest(payload, payloadType, options = {}) { const ca = createCAClient(options); const tlog = createTLogClient(options); const idps = configureIdentityProviders(options); const signer = new sign_1.Signer({ ca, tlog, identityProviders: idps, }); const bundle = await signer.signAttestation(payload, payloadType); return sigstore.Bundle.toJSON(bundle); } exports.attest = attest; async function verify(bundle, payload, options = {}) { const trustedRoot = await tuf.getTrustedRoot(tufCacheDir, { mirrorURL: options.tufMirrorURL, rootPath: options.tufRootPath, }); const verifier = new verify_1.Verifier(trustedRoot, options.keySelector); const deserializedBundle = sigstore.bundleFromJSON(bundle); const opts = collectArtifactVerificationOptions(options); return verifier.verify(deserializedBundle, opts, payload); } exports.verify = verify; // Translates the IdenityProviderOptions into a list of Providers which // should be queried to retrieve an identity token. function configureIdentityProviders(options) { const idps = []; const token = options.identityToken; // If an explicit identity token is provided, use that. Setup a dummy // provider that just returns the token. Otherwise, setup the CI context // provider and (optionally) the OAuth provider. if (token) { idps.push({ getToken: () => Promise.resolve(token) }); } else { idps.push(identity_1.default.ciContextProvider()); if (options.oidcIssuer && options.oidcClientID) { idps.push(identity_1.default.oauthProvider({ issuer: options.oidcIssuer, clientID: options.oidcClientID, clientSecret: options.oidcClientSecret, redirectURL: options.oidcRedirectURL, })); } } return idps; } // Assembles the AtifactVerificationOptions from the supplied VerifyOptions. function collectArtifactVerificationOptions(options) { // The trusted signers are only used if the options contain a certificate // issuer let signers; if (options.certificateIssuer) { let san = undefined; if (options.certificateIdentityEmail) { san = { type: sigstore.SubjectAlternativeNameType.EMAIL, identity: { $case: 'value', value: options.certificateIdentityEmail, }, }; } else if (options.certificateIdentityURI) { san = { type: sigstore.SubjectAlternativeNameType.URI, identity: { $case: 'value', value: options.certificateIdentityURI, }, }; } const oids = Object.entries(options.certificateOIDs || {}).map(([oid, value]) => ({ oid: { id: oid.split('.').map((s) => parseInt(s, 10)) }, value: Buffer.from(value), })); signers = { $case: 'certificateIdentities', certificateIdentities: { identities: [ { issuer: options.certificateIssuer, san: san, oids: oids, }, ], }, }; } // Construct the artifact verification options w/ defaults return { ctlogOptions: { disable: false, threshold: options.ctLogThreshold || 1, detachedSct: false, }, tlogOptions: { disable: false, threshold: options.tlogThreshold || 1, performOnlineVerification: false, }, signers, }; }