mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-30 06:42:18 +00:00
12 lines
316 B
Groff
12 lines
316 B
Groff
RsaPrivKey ::= SEQUENCE {
|
|
version INTEGER,
|
|
n INTEGER ({ rsa_get_n }),
|
|
e INTEGER ({ rsa_get_e }),
|
|
d INTEGER ({ rsa_get_d }),
|
|
prime1 INTEGER ({ rsa_get_p }),
|
|
prime2 INTEGER ({ rsa_get_q }),
|
|
exponent1 INTEGER ({ rsa_get_dp }),
|
|
exponent2 INTEGER ({ rsa_get_dq }),
|
|
coefficient INTEGER ({ rsa_get_qinv })
|
|
}
|