3 * Decoding of DSA keys in OpenSSL and X509.1 format.
6 /* nettle, low-level cryptographics library
8 * Copyright (C) 2005, 2009 Niels Möller, Magnus Holmgren
10 * The nettle library is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or (at your
13 * option) any later version.
15 * The nettle library is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
18 * License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with the nettle library; see the file COPYING.LIB. If not, write to
22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
35 #define GET(i, x, l) \
36 (asn1_der_iterator_next((i)) == ASN1_ITERATOR_PRIMITIVE \
37 && (i)->type == ASN1_INTEGER \
38 && asn1_der_get_bignum((i), (x), (l)) \
42 dsa_params_from_der_iterator(struct dsa_public_key
*pub
,
44 struct asn1_der_iterator
*i
)
46 /* Dss-Parms ::= SEQUENCE {
52 return (i
->type
== ASN1_INTEGER
53 && asn1_der_get_bignum(i
, pub
->p
, p_max_bits
)
54 && mpz_sgn(pub
->p
) > 0
55 && GET(i
, pub
->q
, DSA_SHA1_Q_BITS
)
56 && GET(i
, pub
->g
, p_max_bits
)
57 && asn1_der_iterator_next(i
) == ASN1_ITERATOR_END
);
61 dsa_public_key_from_der_iterator(struct dsa_public_key
*pub
,
63 struct asn1_der_iterator
*i
)
65 /* DSAPublicKey ::= INTEGER
68 return (i
->type
== ASN1_INTEGER
69 && asn1_der_get_bignum(i
, pub
->y
, p_max_bits
)
70 && mpz_sgn(pub
->y
) > 0);
74 dsa_openssl_private_key_from_der_iterator(struct dsa_public_key
*pub
,
75 struct dsa_private_key
*priv
,
77 struct asn1_der_iterator
*i
)
79 /* DSAPrivateKey ::= SEQUENCE {
85 priv_key INTEGER, -- x
91 return (i
->type
== ASN1_SEQUENCE
92 && asn1_der_decode_constructed_last(i
) == ASN1_ITERATOR_PRIMITIVE
93 && i
->type
== ASN1_INTEGER
94 && asn1_der_get_uint32(i
, &version
)
96 && GET(i
, pub
->p
, p_max_bits
)
97 && GET(i
, pub
->q
, DSA_SHA1_Q_BITS
)
98 && GET(i
, pub
->g
, p_max_bits
)
99 && GET(i
, pub
->y
, p_max_bits
)
100 && GET(i
, priv
->x
, DSA_SHA1_Q_BITS
)
101 && asn1_der_iterator_next(i
) == ASN1_ITERATOR_END
);
105 dsa_openssl_private_key_from_der(struct dsa_public_key
*pub
,
106 struct dsa_private_key
*priv
,
108 unsigned length
, const uint8_t *data
)
110 struct asn1_der_iterator i
;
111 enum asn1_iterator_result res
;
113 res
= asn1_der_iterator_first(&i
, length
, data
);
115 return (res
== ASN1_ITERATOR_CONSTRUCTED
116 && dsa_openssl_private_key_from_der_iterator(pub
, priv
, p_max_bits
, &i
));