aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/keypair/keypair.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pubkey/keypair/keypair.cpp')
-rw-r--r--src/pubkey/keypair/keypair.cpp22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/pubkey/keypair/keypair.cpp b/src/pubkey/keypair/keypair.cpp
index 940f0c028..486577fc5 100644
--- a/src/pubkey/keypair/keypair.cpp
+++ b/src/pubkey/keypair/keypair.cpp
@@ -1,7 +1,9 @@
-/*************************************************
-* Keypair Checks Source File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
+/*
+* Keypair Checks
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
#include <botan/keypair.h>
#include <botan/look_pk.h>
@@ -11,9 +13,9 @@ namespace Botan {
namespace KeyPair {
-/*************************************************
-* Check an encryption key pair for consistency *
-*************************************************/
+/*
+* Check an encryption key pair for consistency
+*/
void check_key(RandomNumberGenerator& rng,
PK_Encryptor* encryptor, PK_Decryptor* decryptor)
{
@@ -35,9 +37,9 @@ void check_key(RandomNumberGenerator& rng,
throw Self_Test_Failure("Encryption key pair consistency failure");
}
-/*************************************************
-* Check a signature key pair for consistency *
-*************************************************/
+/*
+* Check a signature key pair for consistency
+*/
void check_key(RandomNumberGenerator& rng,
PK_Signer* signer, PK_Verifier* verifier)
{