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

com.savl.ripple.crypto.ecdsa.IKeyPair Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.savl.ripple.crypto.ecdsa;

import java.math.BigInteger;

public interface IKeyPair {
    String canonicalPubHex();
    byte[] canonicalPubBytes();

    BigInteger pub();
    BigInteger priv();
    String privHex();

    boolean verifySignature(byte[] message, byte[] sigBytes);
    byte[] signMessage(byte[] message);

    byte[] pub160Hash();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy