Lines Matching refs:child

90   CBS child;  in DSA_SIG_parse()  local
91 if (!CBS_get_asn1(cbs, &child, CBS_ASN1_SEQUENCE) || in DSA_SIG_parse()
92 !parse_integer(&child, &ret->r) || in DSA_SIG_parse()
93 !parse_integer(&child, &ret->s) || in DSA_SIG_parse()
94 CBS_len(&child) != 0) { in DSA_SIG_parse()
103 CBB child; in DSA_SIG_marshal() local
104 if (!CBB_add_asn1(cbb, &child, CBS_ASN1_SEQUENCE) || in DSA_SIG_marshal()
105 !marshal_integer(&child, sig->r) || in DSA_SIG_marshal()
106 !marshal_integer(&child, sig->s) || in DSA_SIG_marshal()
119 CBS child; in DSA_parse_public_key() local
120 if (!CBS_get_asn1(cbs, &child, CBS_ASN1_SEQUENCE) || in DSA_parse_public_key()
121 !parse_integer(&child, &ret->pub_key) || in DSA_parse_public_key()
122 !parse_integer(&child, &ret->p) || in DSA_parse_public_key()
123 !parse_integer(&child, &ret->q) || in DSA_parse_public_key()
124 !parse_integer(&child, &ret->g) || in DSA_parse_public_key()
125 CBS_len(&child) != 0) { in DSA_parse_public_key()
134 CBB child; in DSA_marshal_public_key() local
135 if (!CBB_add_asn1(cbb, &child, CBS_ASN1_SEQUENCE) || in DSA_marshal_public_key()
136 !marshal_integer(&child, dsa->pub_key) || in DSA_marshal_public_key()
137 !marshal_integer(&child, dsa->p) || in DSA_marshal_public_key()
138 !marshal_integer(&child, dsa->q) || in DSA_marshal_public_key()
139 !marshal_integer(&child, dsa->g) || in DSA_marshal_public_key()
152 CBS child; in DSA_parse_parameters() local
153 if (!CBS_get_asn1(cbs, &child, CBS_ASN1_SEQUENCE) || in DSA_parse_parameters()
154 !parse_integer(&child, &ret->p) || in DSA_parse_parameters()
155 !parse_integer(&child, &ret->q) || in DSA_parse_parameters()
156 !parse_integer(&child, &ret->g) || in DSA_parse_parameters()
157 CBS_len(&child) != 0) { in DSA_parse_parameters()
166 CBB child; in DSA_marshal_parameters() local
167 if (!CBB_add_asn1(cbb, &child, CBS_ASN1_SEQUENCE) || in DSA_marshal_parameters()
168 !marshal_integer(&child, dsa->p) || in DSA_marshal_parameters()
169 !marshal_integer(&child, dsa->q) || in DSA_marshal_parameters()
170 !marshal_integer(&child, dsa->g) || in DSA_marshal_parameters()
184 CBS child; in DSA_parse_private_key() local
186 if (!CBS_get_asn1(cbs, &child, CBS_ASN1_SEQUENCE) || in DSA_parse_private_key()
187 !CBS_get_asn1_uint64(&child, &version)) { in DSA_parse_private_key()
197 if (!parse_integer(&child, &ret->p) || in DSA_parse_private_key()
198 !parse_integer(&child, &ret->q) || in DSA_parse_private_key()
199 !parse_integer(&child, &ret->g) || in DSA_parse_private_key()
200 !parse_integer(&child, &ret->pub_key) || in DSA_parse_private_key()
201 !parse_integer(&child, &ret->priv_key) || in DSA_parse_private_key()
202 CBS_len(&child) != 0) { in DSA_parse_private_key()
214 CBB child; in DSA_marshal_private_key() local
215 if (!CBB_add_asn1(cbb, &child, CBS_ASN1_SEQUENCE) || in DSA_marshal_private_key()
216 !CBB_add_asn1_uint64(&child, 0 /* version */) || in DSA_marshal_private_key()
217 !marshal_integer(&child, dsa->p) || in DSA_marshal_private_key()
218 !marshal_integer(&child, dsa->q) || in DSA_marshal_private_key()
219 !marshal_integer(&child, dsa->g) || in DSA_marshal_private_key()
220 !marshal_integer(&child, dsa->pub_key) || in DSA_marshal_private_key()
221 !marshal_integer(&child, dsa->priv_key) || in DSA_marshal_private_key()