com.weavechain.ec.ECPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bulletproofs Show documentation
Show all versions of bulletproofs Show documentation
Bulletproofs Java Implementation
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