1"use strict"; 2Object.defineProperty(exports, "__esModule", { value: true }); 3exports.MessageSignatureBundleBuilder = void 0; 4/* 5Copyright 2023 The Sigstore Authors. 6 7Licensed under the Apache License, Version 2.0 (the "License"); 8you may not use this file except in compliance with the License. 9You may obtain a copy of the License at 10 11 http://www.apache.org/licenses/LICENSE-2.0 12 13Unless required by applicable law or agreed to in writing, software 14distributed under the License is distributed on an "AS IS" BASIS, 15WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16See the License for the specific language governing permissions and 17limitations under the License. 18*/ 19const base_1 = require("./base"); 20const bundle_1 = require("./bundle"); 21// BundleBuilder implementation for raw message signatures 22class MessageSignatureBundleBuilder extends base_1.BaseBundleBuilder { 23 constructor(options) { 24 super(options); 25 } 26 async package(artifact, signature) { 27 return (0, bundle_1.toMessageSignatureBundle)(artifact, signature); 28 } 29} 30exports.MessageSignatureBundleBuilder = MessageSignatureBundleBuilder; 31