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: 731aea5edb0cb0b98cb6d95f2d41e7889d84b0b9 (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,
	prime2		INTEGER,
	exponent1	INTEGER,
	exponent2	INTEGER,
	coefficient	INTEGER
}