Home | History | Annotate | Download | only in dh

Lines Matching refs:cbs

68 static int parse_integer(CBS *cbs, BIGNUM **out) {
74 return BN_parse_asn1_unsigned(cbs, *out);
86 DH *DH_parse_parameters(CBS *cbs) {
92 CBS child;
93 if (!CBS_get_asn1(cbs, &child, CBS_ASN1_SEQUENCE) ||
138 CBS cbs;
139 CBS_init(&cbs, *inp, (size_t)len);
140 DH *ret = DH_parse_parameters(&cbs);
148 *inp = CBS_data(&cbs);