Skip to content

Commit

Permalink
Updating of first line of old certificate to be removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Stuart authored and Alex Stuart committed Jun 30, 2015
1 parent 12b5682 commit 86ef4c0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build/remove_old_eduserv_cert.pl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
#

# This line indicates that the old certificate is present
$old_cert_line = 'MIIEiTCCA3GgAwIBAgIRAPzB04tYcniZc/0mSMRCfXgwDQYJKoZIhvcNAQEFBQAw';
#
# Ensure that all Base64-encoded characters which affect perl pattern matching are escaped.
# For example, '+' in the variable indicates 'one or more of the preceding character',
# whilst \+ indicates a literal + in the input string.
$old_cert_line = 'MIIEiDCCA3CgAwIBAgIQOBNA\+hb81eyfqXol6z3klDANBgkqhkiG9w0BAQUFADA2';

while (<>) {

Expand Down

0 comments on commit 86ef4c0

Please sign in to comment.