Module: Sigstore

Defined in:
lib/sigstore.rb,
lib/sigstore/tuf.rb,
lib/sigstore/oidc.rb,
lib/sigstore/error.rb,
lib/sigstore/models.rb,
lib/sigstore/policy.rb,
lib/sigstore/signer.rb,
lib/sigstore/version.rb,
lib/sigstore/verifier.rb,
lib/sigstore/tuf/config.rb,
lib/sigstore/internal/key.rb,
lib/sigstore/internal/set.rb,
lib/sigstore/rekor/client.rb,
lib/sigstore/trusted_root.rb,
lib/sigstore/internal/util.rb,
lib/sigstore/internal/x509.rb,
lib/sigstore/internal/merkle.rb,
lib/sigstore/internal/keyring.rb,
lib/sigstore/rekor/checkpoint.rb

Overview

Copyright 2024 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.

Defined Under Namespace

Modules: Internal, Loggable, OIDC, Policy, Rekor, TUF Classes: BundleType, Error, SBundle, Signer, TrustedRoot, VerificationFailure, VerificationInput, VerificationResult, VerificationSuccess, Verifier

Constant Summary collapse

VERSION =
"0.2.1"
REGISTRY =
Protobug::Registry.new do |registry|
  Sigstore::TrustRoot::V1.register_sigstore_trustroot_protos(registry)
  Sigstore::Bundle::V1.register_sigstore_bundle_protos(registry)
end

Class Attribute Summary collapse

Class Attribute Details

.loggerObject



21
22
23
24
25
26
# File 'lib/sigstore.rb', line 21

def logger
  @logger ||= begin
    require "logger"
    Logger.new($stderr)
  end
end