Botan  1.10.9
Public Types | Public Member Functions | Static Public Member Functions | List of all members
Botan::Fixed_Exponent_Power_Mod Class Reference

#include <pow_mod.h>

Inheritance diagram for Botan::Fixed_Exponent_Power_Mod:
Botan::Power_Mod

Public Types

enum  Usage_Hints {
  NO_HINTS = 0x0000, BASE_IS_FIXED = 0x0001, BASE_IS_SMALL = 0x0002, BASE_IS_LARGE = 0x0004,
  BASE_IS_2 = 0x0008, EXP_IS_FIXED = 0x0100, EXP_IS_SMALL = 0x0200, EXP_IS_LARGE = 0x0400
}
 

Public Member Functions

BigInt execute () const
 
 Fixed_Exponent_Power_Mod ()
 
 Fixed_Exponent_Power_Mod (const BigInt &, const BigInt &, Usage_Hints=NO_HINTS)
 
BigInt operator() (const BigInt &b) const
 
void set_base (const BigInt &) const
 
void set_exponent (const BigInt &) const
 
void set_modulus (const BigInt &, Usage_Hints=NO_HINTS) const
 

Static Public Member Functions

static size_t window_bits (size_t exp_bits, size_t base_bits, Power_Mod::Usage_Hints hints)
 

Detailed Description

Fixed Exponent Modular Exponentiator Proxy

Definition at line 73 of file pow_mod.h.

Member Enumeration Documentation

Enumerator
NO_HINTS 
BASE_IS_FIXED 
BASE_IS_SMALL 
BASE_IS_LARGE 
BASE_IS_2 
EXP_IS_FIXED 
EXP_IS_SMALL 
EXP_IS_LARGE 

Definition at line 35 of file pow_mod.h.

Constructor & Destructor Documentation

Botan::Fixed_Exponent_Power_Mod::Fixed_Exponent_Power_Mod ( )
inline

Definition at line 79 of file pow_mod.h.

79 {}
Botan::Fixed_Exponent_Power_Mod::Fixed_Exponent_Power_Mod ( const BigInt e,
const BigInt n,
Usage_Hints  hints = NO_HINTS 
)

Definition at line 195 of file pow_mod.cpp.

References Botan::Power_Mod::set_exponent().

197  :
198  Power_Mod(n, Usage_Hints(hints | EXP_IS_FIXED | choose_exp_hints(e, n)))
199  {
200  set_exponent(e);
201  }
BigInt n
Definition: numthry.cpp:26
Power_Mod(const BigInt &=0, Usage_Hints=NO_HINTS)
Definition: pow_mod.cpp:17
void set_exponent(const BigInt &) const
Definition: pow_mod.cpp:96

Member Function Documentation

BigInt Botan::Power_Mod::execute ( ) const
inherited

Definition at line 109 of file pow_mod.cpp.

References Botan::Modular_Exponentiator::execute().

Referenced by Botan::power_mod().

110  {
111  if(!core)
112  throw Internal_Error("Power_Mod::execute: core was NULL");
113  return core->execute();
114  }
virtual BigInt execute() const =0
BigInt Botan::Fixed_Exponent_Power_Mod::operator() ( const BigInt b) const
inline

Definition at line 76 of file pow_mod.h.

77  { set_base(b); return execute(); }
void set_base(const BigInt &) const
Definition: pow_mod.cpp:83
BigInt execute() const
Definition: pow_mod.cpp:109
void Botan::Power_Mod::set_base ( const BigInt b) const
inherited

Definition at line 83 of file pow_mod.cpp.

References Botan::BigInt::is_negative(), Botan::BigInt::is_zero(), and Botan::Modular_Exponentiator::set_base().

Referenced by Botan::Fixed_Base_Power_Mod::Fixed_Base_Power_Mod(), and Botan::power_mod().

84  {
85  if(b.is_zero() || b.is_negative())
86  throw Invalid_Argument("Power_Mod::set_base: arg must be > 0");
87 
88  if(!core)
89  throw Internal_Error("Power_Mod::set_base: core was NULL");
90  core->set_base(b);
91  }
virtual void set_base(const BigInt &)=0
std::invalid_argument Invalid_Argument
Definition: exceptn.h:20
void Botan::Power_Mod::set_exponent ( const BigInt e) const
inherited

Definition at line 96 of file pow_mod.cpp.

References Botan::BigInt::is_negative(), and Botan::Modular_Exponentiator::set_exponent().

Referenced by Fixed_Exponent_Power_Mod(), and Botan::power_mod().

97  {
98  if(e.is_negative())
99  throw Invalid_Argument("Power_Mod::set_exponent: arg must be > 0");
100 
101  if(!core)
102  throw Internal_Error("Power_Mod::set_exponent: core was NULL");
103  core->set_exponent(e);
104  }
virtual void set_exponent(const BigInt &)=0
std::invalid_argument Invalid_Argument
Definition: exceptn.h:20
void Botan::Power_Mod::set_modulus ( const BigInt n,
Usage_Hints  hints = NO_HINTS 
) const
inherited

Definition at line 58 of file pow_mod.cpp.

References Botan::Global_State_Management::global_state(), and Botan::Algorithm_Factory::Engine_Iterator::next().

Referenced by Botan::Power_Mod::Power_Mod().

59  {
60  delete core;
61  core = 0;
62 
63  if(n != 0)
64  {
65  Algorithm_Factory::Engine_Iterator i(global_state().algorithm_factory());
66 
67  while(const Engine* engine = i.next())
68  {
69  core = engine->mod_exp(n, hints);
70 
71  if(core)
72  break;
73  }
74 
75  if(!core)
76  throw Lookup_Error("Power_Mod: Unable to find a working engine");
77  }
78  }
BigInt n
Definition: numthry.cpp:26
friend class Engine_Iterator
Definition: algo_factory.h:207
Library_State & global_state()
size_t Botan::Power_Mod::window_bits ( size_t  exp_bits,
size_t  base_bits,
Power_Mod::Usage_Hints  hints 
)
staticinherited

Definition at line 119 of file pow_mod.cpp.

References Botan::Power_Mod::BASE_IS_FIXED, and Botan::Power_Mod::EXP_IS_LARGE.

Referenced by Botan::Fixed_Window_Exponentiator::set_base(), and Botan::Montgomery_Exponentiator::set_base().

121  {
122  static const size_t wsize[][2] = {
123  { 1434, 7 },
124  { 539, 6 },
125  { 197, 4 },
126  { 70, 3 },
127  { 25, 2 },
128  { 0, 0 }
129  };
130 
131  size_t window_bits = 1;
132 
133  if(exp_bits)
134  {
135  for(size_t j = 0; wsize[j][0]; ++j)
136  {
137  if(exp_bits >= wsize[j][0])
138  {
139  window_bits += wsize[j][1];
140  break;
141  }
142  }
143  }
144 
145  if(hints & Power_Mod::BASE_IS_FIXED)
146  window_bits += 2;
147  if(hints & Power_Mod::EXP_IS_LARGE)
148  ++window_bits;
149 
150  return window_bits;
151  }
static size_t window_bits(size_t exp_bits, size_t base_bits, Power_Mod::Usage_Hints hints)
Definition: pow_mod.cpp:119

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