diff options
author | Dan Gudmundsson <[email protected]> | 2010-08-31 10:15:58 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2010-08-31 10:15:58 +0200 |
commit | 4a235cf273137e64c8d281e2015d98d4abc1bd67 (patch) | |
tree | 71f604adfcd33de1099101e50c2f5340b39344c6 /lib/public_key/test/public_key_SUITE.erl | |
parent | 4f100fff5844f7af08b1d9be23e990e4a48b27de (diff) | |
download | otp-4a235cf273137e64c8d281e2015d98d4abc1bd67.tar.gz otp-4a235cf273137e64c8d281e2015d98d4abc1bd67.tar.bz2 otp-4a235cf273137e64c8d281e2015d98d4abc1bd67.zip |
Fix issuer issue in generated certs
Diffstat (limited to 'lib/public_key/test/public_key_SUITE.erl')
-rw-r--r-- | lib/public_key/test/public_key_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public_key/test/public_key_SUITE.erl b/lib/public_key/test/public_key_SUITE.erl index 1d32e989a9..5d4c3d77fe 100644 --- a/lib/public_key/test/public_key_SUITE.erl +++ b/lib/public_key/test/public_key_SUITE.erl @@ -152,7 +152,7 @@ pk_decode_encode(Config) when is_list(Config) -> Salt0 = crypto:rand_bytes(8), Entry3 = public_key:pem_entry_encode('RSAPrivateKey', RSAKey0, - {{"DES-EDE3-CBC", Salt0}, "1234abcd"}), + {{"DES-EDE3-CBC", Salt0}, "1234abcd"}), RSAKey0 = public_key:pem_entry_decode(Entry3,"1234abcd"), |