rsa_key

RSA LTC_PKCS style key

version(LTC_MRSA)
extern (C) nothrow
struct rsa_key {}

Members

Variables

N
void* N;

The modulus

d
void* d;

The private exponent

dP
void* dP;

The d mod (p - 1) CRT param

dQ
void* dQ;

The d mod (q - 1) CRT param

e
void* e;

The public exponent

p
void* p;

The p factor of N

q
void* q;

The q factor of N

qP
void* qP;

The 1/q mod p CRT param

type
int type;

Type of key, PK_PRIVATE or PK_PUBLIC

Meta