Renamed the method for validating header

Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
This commit is contained in:
Vasu1105 2022-04-27 13:24:24 +05:30
parent 9454821d7c
commit f0c868759d

View file

@ -149,7 +149,7 @@ module InspecPlugins
raise "Invalid artifact version detected." raise "Invalid artifact version detected."
end end
verify_file_header?(header) valid_header?(header)
verification_key = KEY_ALG.new File.read "#{header[1]}.pem.pub" verification_key = KEY_ALG.new File.read "#{header[1]}.pem.pub"
signature = Base64.decode64(header[3]) signature = Base64.decode64(header[3])
digest = ARTIFACT_DIGEST.new digest = ARTIFACT_DIGEST.new
@ -160,7 +160,7 @@ module InspecPlugins
end end
end end
def verify_file_header?(header) def valid_header?(header)
unless File.exist? "#{header[1]}.pem.pub" unless File.exist? "#{header[1]}.pem.pub"
raise "Can't find #{header[1]}.pem.pub}" raise "Can't find #{header[1]}.pem.pub}"
end end