Commit 4446044a authored by Emilia Kasper's avatar Emilia Kasper
Browse files

NISTZ256: set Z_is_one to boolean 0/1 as is customary.



Cosmetic, no real effect.

Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
parent e22d2199
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1346,7 +1346,7 @@ static int ecp_nistz256_points_mul(const EC_GROUP *group,
        !bn_set_words(r->Z, p.p.Z, P256_LIMBS)) {
        goto err;
    }
    r->Z_is_one = is_one(p.p.Z);
    r->Z_is_one = is_one(p.p.Z) & 1;

    ret = 1;