Skip to content

Commit

Permalink
Update check_embedded.pl to deal with output from OpenSSL 1.1.1g
Browse files Browse the repository at this point in the history
See ukf/ukf-meta#251 for details
  • Loading branch information
Alex Stuart committed Sep 1, 2020
1 parent 4c3110f commit 59e3403
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions utilities/check_embedded.pl
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,9 @@ sub comment {
} elsif (/^\s*Public-Key: \((\d+) bit\)/) { # OpenSSL 1.0
$pubSize = $1;
next;
} elsif (/^\s*RSA Public-Key: \((\d+) bit\)/) { # OpenSSL 1.1.1g
$pubSize = $1;
next;
}

if (/Not After : (.*)$/) {
Expand Down

0 comments on commit 59e3403

Please sign in to comment.