diff options
author | lloyd <[email protected]> | 2006-09-10 03:18:35 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-09-10 03:18:35 +0000 |
commit | 3af61dd588df052eb100e0c581860edfc1cb09c3 (patch) | |
tree | 1d9466c23241e8963f9be567496716348887ab5a /src/if_algo.cpp | |
parent | 9e26ffdb32e39ed58b99ab5f0a4f4dc2496127fc (diff) |
Hack around some Visual Studio bugs that I can't seem to find good solutions
for.
Diffstat (limited to 'src/if_algo.cpp')
-rw-r--r-- | src/if_algo.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/if_algo.cpp b/src/if_algo.cpp index afa428fde..5af691aa2 100644 --- a/src/if_algo.cpp +++ b/src/if_algo.cpp @@ -139,8 +139,7 @@ PKCS8_Decoder* IF_Scheme_PrivateKey::pkcs8_decoder() .end_cons(); if(version != 0) - throw Decoding_Error(key->algo_name() + - ": Unknown PKCS #1 key version"); + throw Decoding_Error("Unknown PKCS #1 key format version"); key->PKCS8_load_hook(); } |