Lines Matching defs:buf
74 point_conversion_form_t form, unsigned char *buf,
92 return ossl_ec_GFp_simple_point2oct(group, point, form, buf, len,
102 form, buf, len, ctx);
106 return group->meth->point2oct(group, point, form, buf, len, ctx);
110 const unsigned char *buf, size_t len, BN_CTX *ctx)
123 return ossl_ec_GFp_simple_oct2point(group, point, buf, len, ctx);
131 return ossl_ec_GF2m_simple_oct2point(group, point, buf, len, ctx);
134 return group->meth->oct2point(group, point, buf, len, ctx);
142 unsigned char *buf;
147 if ((buf = OPENSSL_malloc(len)) == NULL) {
151 len = EC_POINT_point2oct(group, point, form, buf, len, ctx);
153 OPENSSL_free(buf);
156 *pbuf = buf;