Botan 1.10.17
Botan::RW_PrivateKey Class Reference

#include <rw.h>

Inheritance diagram for Botan::RW_PrivateKey:
Botan::RW_PublicKey Botan::IF_Scheme_PrivateKey Botan::IF_Scheme_PublicKey Botan::IF_Scheme_PublicKey Botan::Private_Key Botan::Public_Key Botan::Public_Key Botan::Public_Key

Public Member Functions

std::string algo_name () const
AlgorithmIdentifier algorithm_identifier () const
bool check_key (RandomNumberGenerator &rng, bool) const
const BigIntget_c () const
const BigIntget_d () const
const BigIntget_d1 () const
const BigIntget_d2 () const
const BigIntget_e () const
const BigIntget_n () const
virtual OID get_oid () const
const BigIntget_p () const
const BigIntget_q () const
size_t max_input_bits () const
virtual size_t message_part_size () const
virtual size_t message_parts () const
virtual AlgorithmIdentifier pkcs8_algorithm_identifier () const
MemoryVector< bytepkcs8_private_key () const
 RW_PrivateKey (const AlgorithmIdentifier &alg_id, const MemoryRegion< byte > &key_bits, RandomNumberGenerator &rng)
 RW_PrivateKey (RandomNumberGenerator &rng, const BigInt &p, const BigInt &q, const BigInt &e, const BigInt &d=0, const BigInt &n=0)
 RW_PrivateKey (RandomNumberGenerator &rng, size_t bits, size_t=2)
MemoryVector< bytex509_subject_public_key () const

Protected Member Functions

void gen_check (RandomNumberGenerator &rng) const
void load_check (RandomNumberGenerator &rng) const
virtual void load_check (RandomNumberGenerator &rng) const

Protected Attributes

BigInt c
BigInt d
BigInt d1
BigInt d2
BigInt e
BigInt n
BigInt p
BigInt q

Detailed Description

Rabin-Williams Private Key

Definition at line 42 of file rw.h.

Constructor & Destructor Documentation

◆ RW_PrivateKey() [1/3]

Botan::RW_PrivateKey::RW_PrivateKey ( const AlgorithmIdentifier & alg_id,
const MemoryRegion< byte > & key_bits,
RandomNumberGenerator & rng )
inline

Definition at line 46 of file rw.h.

48 :
49 IF_Scheme_PrivateKey(rng, alg_id, key_bits) {}

References Botan::IF_Scheme_PrivateKey::IF_Scheme_PrivateKey().

Referenced by Botan::make_private_key().

◆ RW_PrivateKey() [2/3]

◆ RW_PrivateKey() [3/3]

Botan::RW_PrivateKey::RW_PrivateKey ( RandomNumberGenerator & rng,
size_t bits,
size_t exp = 2 )

Definition at line 19 of file rw.cpp.

21 {
22 if(bits < 512)
23 throw Invalid_Argument(algo_name() + ": Can't make a key that is only " +
24 to_string(bits) + " bits long");
25 if(exp < 2 || exp % 2 == 1)
26 throw Invalid_Argument(algo_name() + ": Invalid encryption exponent");
27
28 e = exp;
29
30 do
31 {
32 p = random_prime(rng, (bits + 1) / 2, e / 2, 3, 4);
33 q = random_prime(rng, bits - p.bits(), e / 2, ((p % 8 == 3) ? 7 : 3), 8);
34 n = p * q;
35 } while(n.bits() != bits);
36
37 d = inverse_mod(e, lcm(p - 1, q - 1) >> 1);
38 d1 = d % (p - 1);
39 d2 = d % (q - 1);
40 c = inverse_mod(q, p);
41
42 gen_check(rng);
43 }
size_t bits() const
Definition bigint.cpp:254
void gen_check(RandomNumberGenerator &rng) const
Definition pk_keys.cpp:49
virtual std::string algo_name() const =0
BigInt lcm(const BigInt &a, const BigInt &b)
Definition numthry.cpp:195
BigInt inverse_mod(const BigInt &n, const BigInt &mod)
Definition numthry.cpp:314
std::string to_string(u64bit n, size_t min_len)
Definition parsing.cpp:42
std::invalid_argument Invalid_Argument
Definition exceptn.h:20
BigInt random_prime(RandomNumberGenerator &rng, size_t bits, const BigInt &coprime, size_t equiv, size_t modulo)
Definition make_prm.cpp:17

References Botan::RW_PublicKey::algo_name(), Botan::BigInt::bits(), Botan::IF_Scheme_PrivateKey::c, Botan::IF_Scheme_PrivateKey::d, Botan::IF_Scheme_PrivateKey::d1, Botan::IF_Scheme_PrivateKey::d2, Botan::IF_Scheme_PublicKey::e, Botan::Private_Key::gen_check(), Botan::inverse_mod(), Botan::lcm(), Botan::IF_Scheme_PublicKey::n, Botan::IF_Scheme_PrivateKey::p, Botan::IF_Scheme_PrivateKey::q, Botan::random_prime(), and Botan::to_string().

Member Function Documentation

◆ algo_name()

std::string Botan::RW_PublicKey::algo_name ( ) const
inlinevirtualinherited

Get the name of the underlying public key scheme.

Returns
name of the public key scheme

Implements Botan::Public_Key.

Definition at line 24 of file rw.h.

24{ return "RW"; }

Referenced by Botan::RW_PrivateKey::RW_PrivateKey().

◆ algorithm_identifier()

AlgorithmIdentifier Botan::IF_Scheme_PublicKey::algorithm_identifier ( ) const
virtualinherited

◆ check_key()

bool Botan::RW_PrivateKey::check_key ( RandomNumberGenerator & rng,
bool strong ) const
virtual

Test the key values for consistency.

Parameters
rngrng to use
strongwhether to perform strong and lengthy version of the test
Returns
true if the test is passed

Reimplemented from Botan::IF_Scheme_PublicKey.

Definition at line 48 of file rw.cpp.

49 {
50 if(!IF_Scheme_PrivateKey::check_key(rng, strong))
51 return false;
52
53 if(!strong)
54 return true;
55
56 if((e * d) % (lcm(p - 1, q - 1) / 2) != 1)
57 return false;
58
59 return KeyPair::signature_consistency_check(rng, *this, "EMSA2(SHA-1)");
60 }
bool check_key(RandomNumberGenerator &rng, bool) const
Definition if_algo.cpp:121
bool signature_consistency_check(RandomNumberGenerator &rng, const Private_Key &key, const std::string &padding)
Definition keypair.cpp:47

References Botan::IF_Scheme_PrivateKey::check_key(), Botan::IF_Scheme_PrivateKey::d, Botan::IF_Scheme_PublicKey::e, Botan::lcm(), Botan::IF_Scheme_PrivateKey::p, Botan::IF_Scheme_PrivateKey::q, and Botan::KeyPair::signature_consistency_check().

◆ gen_check()

void Botan::Private_Key::gen_check ( RandomNumberGenerator & rng) const
protectedinherited

Self-test after generating a key

Parameters
rnga random number generator

Definition at line 49 of file pk_keys.cpp.

50 {
51 if(!check_key(rng, BOTAN_PRIVATE_KEY_STRONG_CHECKS_ON_GENERATE))
52 throw Self_Test_Failure(algo_name() + " private key generation failed");
53 }
virtual bool check_key(RandomNumberGenerator &rng, bool strong) const =0
Self_Test_Failure(const std::string &err)
Definition exceptn.h:177

References Botan::Public_Key::algo_name(), Botan::Public_Key::check_key(), and Botan::Self_Test_Failure::Self_Test_Failure().

Referenced by Botan::DH_PrivateKey::DH_PrivateKey(), Botan::DSA_PrivateKey::DSA_PrivateKey(), Botan::ElGamal_PrivateKey::ElGamal_PrivateKey(), Botan::NR_PrivateKey::NR_PrivateKey(), Botan::RSA_PrivateKey::RSA_PrivateKey(), and Botan::RW_PrivateKey::RW_PrivateKey().

◆ get_c()

const BigInt & Botan::IF_Scheme_PrivateKey::get_c ( ) const
inlineinherited

Definition at line 92 of file if_algo.h.

92{ return c; }

References c.

◆ get_d()

const BigInt & Botan::IF_Scheme_PrivateKey::get_d ( ) const
inlineinherited

Get d with exp * d = 1 mod (p - 1, q - 1).

Returns
d

Definition at line 90 of file if_algo.h.

90{ return d; }

References d.

◆ get_d1()

const BigInt & Botan::IF_Scheme_PrivateKey::get_d1 ( ) const
inlineinherited

Definition at line 93 of file if_algo.h.

93{ return d1; }

References d1.

◆ get_d2()

const BigInt & Botan::IF_Scheme_PrivateKey::get_d2 ( ) const
inlineinherited

Definition at line 94 of file if_algo.h.

94{ return d2; }

References d2.

◆ get_e()

const BigInt & Botan::IF_Scheme_PublicKey::get_e ( ) const
inlineinherited
Returns
public exponent

Definition at line 44 of file if_algo.h.

44{ return e; }

References e.

Referenced by Botan::Server_Key_Exchange::Server_Key_Exchange().

◆ get_n()

const BigInt & Botan::IF_Scheme_PublicKey::get_n ( ) const
inlineinherited
Returns
public modulus

Definition at line 39 of file if_algo.h.

39{ return n; }

References n.

Referenced by Botan::Server_Key_Exchange::Server_Key_Exchange().

◆ get_oid()

OID Botan::Public_Key::get_oid ( ) const
virtualinherited

Get the OID of the underlying public key scheme.

Returns
OID of the public key scheme

Definition at line 17 of file pk_keys.cpp.

18 {
19 try {
20 return OIDS::lookup(algo_name());
21 }
22 catch(Lookup_Error)
23 {
24 throw Lookup_Error("PK algo " + algo_name() + " has no defined OIDs");
25 }
26 }
std::string lookup(const OID &oid)
Definition oids.cpp:31
Lookup_Error(const std::string &err)
Definition exceptn.h:37

References algo_name(), Botan::OIDS::lookup(), and Botan::Lookup_Error::Lookup_Error().

Referenced by algo_name(), Botan::DL_Scheme_PublicKey::algorithm_identifier(), Botan::EC_PublicKey::algorithm_identifier(), and Botan::IF_Scheme_PublicKey::algorithm_identifier().

◆ get_p()

const BigInt & Botan::IF_Scheme_PrivateKey::get_p ( ) const
inlineinherited

Get the first prime p.

Returns
prime p

Definition at line 78 of file if_algo.h.

78{ return p; }

References p.

◆ get_q()

const BigInt & Botan::IF_Scheme_PrivateKey::get_q ( ) const
inlineinherited

Get the second prime q.

Returns
prime q

Definition at line 84 of file if_algo.h.

84{ return q; }

References q.

◆ load_check() [1/2]

◆ load_check() [2/2]

void Botan::Public_Key::load_check ( RandomNumberGenerator & rng) const
protectedvirtualinherited

Self-test after loading a key

Parameters
rnga random number generator

Reimplemented in Botan::Private_Key.

Definition at line 31 of file pk_keys.cpp.

32 {
33 if(!check_key(rng, BOTAN_PUBLIC_KEY_STRONG_CHECKS_ON_LOAD))
34 throw Invalid_Argument(algo_name() + ": Invalid public key");
35 }

References algo_name(), and check_key().

◆ max_input_bits()

size_t Botan::IF_Scheme_PublicKey::max_input_bits ( ) const
inlinevirtualinherited

Get the maximum message size in bits supported by this public key.

Returns
maximum message size in bits

Implements Botan::Public_Key.

Definition at line 46 of file if_algo.h.

46{ return (n.bits() - 1); }

References n.

◆ message_part_size()

virtual size_t Botan::Public_Key::message_part_size ( ) const
inlinevirtualinherited

Find out the message part size supported by this scheme/key.

Returns
size of the message parts in bits

Reimplemented in Botan::DSA_PublicKey, Botan::ECDSA_PublicKey, and Botan::NR_PublicKey.

Definition at line 56 of file pk_keys.h.

56{ return 0; }

◆ message_parts()

virtual size_t Botan::Public_Key::message_parts ( ) const
inlinevirtualinherited

Find out the number of message parts supported by this scheme.

Returns
number of message parts

Reimplemented in Botan::DSA_PublicKey, Botan::ECDSA_PublicKey, and Botan::NR_PublicKey.

Definition at line 50 of file pk_keys.h.

50{ return 1; }

Referenced by Botan::X509_Object::check_signature(), and Botan::choose_sig_format().

◆ pkcs8_algorithm_identifier()

virtual AlgorithmIdentifier Botan::Private_Key::pkcs8_algorithm_identifier ( ) const
inlinevirtualinherited
Returns
PKCS #8 AlgorithmIdentifier for this key Might be different from the X.509 identifier, but normally is not

Definition at line 98 of file pk_keys.h.

99 { return algorithm_identifier(); }
virtual AlgorithmIdentifier algorithm_identifier() const =0

References Botan::Public_Key::algorithm_identifier().

Referenced by Botan::PKCS8::BER_encode().

◆ pkcs8_private_key()

MemoryVector< byte > Botan::IF_Scheme_PrivateKey::pkcs8_private_key ( ) const
virtualinherited
Returns
PKCS #8 private key encoding for this key object

Implements Botan::Private_Key.

Definition at line 52 of file if_algo.cpp.

53 {
54 return DER_Encoder()
55 .start_cons(SEQUENCE)
56 .encode(static_cast<size_t>(0))
57 .encode(n)
58 .encode(e)
59 .encode(d)
60 .encode(p)
61 .encode(q)
62 .encode(d1)
63 .encode(d2)
64 .encode(c)
65 .end_cons()
66 .get_contents();
67 }
@ SEQUENCE
Definition asn1_int.h:35

References c, d, d1, d2, Botan::IF_Scheme_PublicKey::e, Botan::DER_Encoder::encode(), Botan::DER_Encoder::end_cons(), Botan::DER_Encoder::get_contents(), Botan::IF_Scheme_PublicKey::n, p, q, Botan::SEQUENCE, and Botan::DER_Encoder::start_cons().

◆ x509_subject_public_key()

MemoryVector< byte > Botan::IF_Scheme_PublicKey::x509_subject_public_key ( ) const
virtualinherited
Returns
X.509 subject key encoding for this key object

Implements Botan::Public_Key.

Definition at line 21 of file if_algo.cpp.

22 {
23 return DER_Encoder()
24 .start_cons(SEQUENCE)
25 .encode(n)
26 .encode(e)
27 .end_cons()
28 .get_contents();
29 }

References e, Botan::DER_Encoder::encode(), Botan::DER_Encoder::end_cons(), Botan::DER_Encoder::get_contents(), n, Botan::SEQUENCE, and Botan::DER_Encoder::start_cons().

Member Data Documentation

◆ c

◆ d

◆ d1

◆ d2

◆ e

◆ n

◆ p

◆ q


The documentation for this class was generated from the following files: