All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.weavechain.ec.ECPoint Maven / Gradle / Ivy

The newest version!
package com.weavechain.ec;

public interface ECPoint {

    byte[] toByteArray();

    ECPoint compress();

    ECPoint decompress();

    ECPoint add(ECPoint other);

    ECPoint subtract(ECPoint other);

    ECPoint multiply(Scalar scalar);

    ECPoint negate();

    ECPoint dbl();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy