Skip to content

Commit

Permalink
Refactored cert_get to return x509 object
Browse files Browse the repository at this point in the history
Signed-off-by: John McCrae <[email protected]>
  • Loading branch information
johnmccrae committed Dec 7, 2021
1 parent bf4ae54 commit 5c2b5ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/win32/certstore/store_base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def cert_get(certificate_thumbprint)
cert_pem = get_cert_pem(thumbprint)
cert_pem = format_pem(cert_pem)
verify_certificate(cert_pem)
cert_pem
build_openssl_obj(cert_pem)
end

# Listing certificate of open certstore and return list in json
Expand Down

0 comments on commit 5c2b5ec

Please sign in to comment.