Sha256: 9739f416142252c4e4b35143c6af08f2fd6102dd8238e09dcb73e7ec483b39a1
Contents?: true
Size: 268 Bytes
Versions: 31
Compression:
Stored size: 268 Bytes
Contents
# frozen_string_literal: true module Facter module Util module Resolvers class FingerPrint attr_accessor :sha1, :sha256 def initialize(sha1, sha256) @sha1 = sha1 @sha256 = sha256 end end end end end
Version data entries
31 entries across 31 versions & 1 rubygems