Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rsaprivkey.asn1 « crypto - github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ce06758e8af758de779b276663e5c7d6118e470 (plain)
1
2
3
4
5
6
7
8
9
10
11
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 })
}