botan v1.12.5 (2016-04-07T22:31:19Z)
Dub
Repo
ElGamalPrivateKey
botan
pubkey
algo
elgamal
ElGamal Private Key
static if
(
BOTAN_HAS_PUBLIC_KEY_CRYPTO && BOTAN_HAS_ELGAMAL
)
struct
ElGamalPrivateKey {
alias
Options
=
ElGamalOptions
;
__gshared immutable
string
algoName
;
this
(RandomNumberGenerator rng, DLGroup grp, BigInt x_arg);
this
(AlgorithmIdentifier alg_id, SecureVector!ubyte key_bits, RandomNumberGenerator rng);
this
(PrivateKey pkey);
mixin
Embed
!(
m_priv
,
m_owned
)
;
bool
m_owned
;
DLSchemePrivateKey
m_priv
;
}
Constructors
this
this
(RandomNumberGenerator rng, DLGroup grp, BigInt x_arg)
Undocumented in source.
this
this
(AlgorithmIdentifier alg_id, SecureVector!ubyte key_bits, RandomNumberGenerator rng)
Undocumented in source.
this
this
(PrivateKey pkey)
Undocumented in source.
Members
Aliases
Options
alias
Options
=
ElGamalOptions
Undocumented in source.
Mixins
__anonymous
mixin
Embed
!(
m_priv
,
m_owned
)
Undocumented in source.
Static variables
algoName
string
algoName
;
Undocumented in source.
Variables
m_owned
bool
m_owned
;
Undocumented in source.
m_priv
DLSchemePrivateKey
m_priv
;
Undocumented in source.
Meta
Source
See Implementation
botan
pubkey
algo
elgamal
classes
ElGamalDecryptionOperation
ElGamalEncryptionOperation
functions
elgamalKat
testPkKeygen
structs
ElGamalOptions
ElGamalPrivateKey
ElGamalPublicKey
ElGamal Private Key