void EC_GROUP_free(EC_GROUP *group)
{
+ if (!group) return;
+
if (group->meth->group_finish != 0)
group->meth->group_finish(group);
void EC_GROUP_clear_free(EC_GROUP *group)
{
+ if (!group) return;
+
if (group->meth->group_clear_finish != 0)
group->meth->group_clear_finish(group);
else if (group->meth != NULL && group->meth->group_finish != 0)
void EC_POINT_free(EC_POINT *point)
{
+ if (!point) return;
+
if (point->meth->point_finish != 0)
point->meth->point_finish(point);
OPENSSL_free(point);
void EC_POINT_clear_free(EC_POINT *point)
{
+ if (!point) return;
+
if (point->meth->point_clear_finish != 0)
point->meth->point_clear_finish(point);
else if (point->meth != NULL && point->meth->point_finish != 0)