Lines Matching defs:len
75 size_t len, BN_CTX *ctx)
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);
141 size_t len;
144 len = EC_POINT_point2oct(group, point, form, NULL, 0, NULL);
145 if (len == 0)
147 if ((buf = OPENSSL_malloc(len)) == NULL) {
151 len = EC_POINT_point2oct(group, point, form, buf, len, ctx);
152 if (len == 0) {
157 return len;