summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/sigstore/dist/ca/index.js
blob: 7e0f9e0c5c4c0bf695e1fb630c26f559d96c91ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CAClient = void 0;
const error_1 = require("../error");
const external_1 = require("../external");
const format_1 = require("./format");
class CAClient {
    constructor(options) {
        this.fulcio = new external_1.Fulcio({ baseURL: options.fulcioBaseURL });
    }
    async createSigningCertificate(identityToken, publicKey, challenge) {
        const request = (0, format_1.toCertificateRequest)(identityToken, publicKey, challenge);
        try {
            const certificate = await this.fulcio.createSigningCertificate(request);
            return certificate.signedCertificateEmbeddedSct.chain.certificates;
        }
        catch (err) {
            throw new error_1.InternalError({
                code: 'CA_CREATE_SIGNING_CERTIFICATE_ERROR',
                message: 'error creating signing certificate',
                cause: err,
            });
        }
    }
}
exports.CAClient = CAClient;