diff options
author | lloyd <[email protected]> | 2010-03-04 05:24:03 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-04 05:24:03 +0000 |
commit | 86676f42a6f2f214959cf2151d0976e6f0b98e94 (patch) | |
tree | 004dc40c0c846bcb5dfd0e477a1ced5afe77a1ff /src/pubkey | |
parent | 2548328cc11d76036e8fc714172b130f2a8c3ebc (diff) |
Fix exception text
Diffstat (limited to 'src/pubkey')
-rw-r--r-- | src/pubkey/gost_3410/gost_3410.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pubkey/gost_3410/gost_3410.cpp b/src/pubkey/gost_3410/gost_3410.cpp index 46afad44e..919402572 100644 --- a/src/pubkey/gost_3410/gost_3410.cpp +++ b/src/pubkey/gost_3410/gost_3410.cpp @@ -64,7 +64,7 @@ GOST_3410_PublicKey::GOST_3410_PublicKey(const AlgorithmIdentifier& alg_id, } catch(Illegal_Point) { - throw Internal_Error("Loaded ECC private key failed self test"); + throw Internal_Error("Loaded ECC public key failed self test"); } } |