diff options
Diffstat (limited to 'src/lib/pubkey/keypair/keypair.h')
-rw-r--r-- | src/lib/pubkey/keypair/keypair.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/pubkey/keypair/keypair.h b/src/lib/pubkey/keypair/keypair.h index 6900faa35..df73f3192 100644 --- a/src/lib/pubkey/keypair/keypair.h +++ b/src/lib/pubkey/keypair/keypair.h @@ -10,8 +10,6 @@ #include <botan/pk_keys.h> -BOTAN_FUTURE_INTERNAL_HEADER(keypair.h) - namespace Botan { namespace KeyPair { @@ -25,7 +23,7 @@ namespace KeyPair { * @param padding the encryption padding method to use * @return true if consistent otherwise false */ -BOTAN_PUBLIC_API(2,0) bool +bool encryption_consistency_check(RandomNumberGenerator& rng, const Private_Key& private_key, const Public_Key& public_key, @@ -40,7 +38,7 @@ encryption_consistency_check(RandomNumberGenerator& rng, * @param padding the signature padding method to use * @return true if consistent otherwise false */ -BOTAN_PUBLIC_API(2,0) bool +bool signature_consistency_check(RandomNumberGenerator& rng, const Private_Key& private_key, const Public_Key& public_key, |