Skip to content

Commit

Permalink
fix uts
Browse files Browse the repository at this point in the history
  • Loading branch information
aradyaron committed Jan 19, 2025
1 parent 7603af6 commit 4497a9c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion unittests/src/ssl-keygen-tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ int main(int argc, char** argv)
logger.info() << "SHA1 Fingerprint" << target->fingerprint(FingerprintAlgorithm::SHA1);
logger.info() << "SHA256 Fingerprint" << target->fingerprint(FingerprintAlgorithm::SHA256);
logger.info() << "MD5 Fingerprint" << target->fingerprint(FingerprintAlgorithm::MD5);
logger.info() << "Fingerprints" << target->fingerprints();
for const auto& [key, value] : target->fingerprints()
{
logger.info() << key << " = " << value;
}

auto chain = octo::keygen::ssl::SSLKeypairCertificateChain::load_certificate_chain(
std::make_unique<octo::encryption::SecureString>(SUBCA)
Expand Down

0 comments on commit 4497a9c

Please sign in to comment.