1 -- SPDX-License-Identifier: BSD-3-Clause
3 -- Copyright (C) 2016 IETF Trust and the persons identified as authors
6 -- https://www.rfc-editor.org/rfc/rfc8017#appendix-A.1.2
8 RsaPrivKey ::= SEQUENCE {
10 n INTEGER ({ rsa_get_n }),
11 e INTEGER ({ rsa_get_e }),
12 d INTEGER ({ rsa_get_d }),
13 prime1 INTEGER ({ rsa_get_p }),
14 prime2 INTEGER ({ rsa_get_q }),
15 exponent1 INTEGER ({ rsa_get_dp }),
16 exponent2 INTEGER ({ rsa_get_dq }),
17 coefficient INTEGER ({ rsa_get_qinv })