com.weavechain.ec.Scalar 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 Scalar {
byte[] toByteArray();
Scalar invert();
Scalar square();
Scalar reduce();
Scalar add(Scalar other);
Scalar subtract(Scalar other);
Scalar multiply(Scalar other);
Scalar divide(Scalar other);
Scalar multiplyAndAdd(Scalar mul, Scalar add);
byte[] toRadix2w(int w);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy