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

com.peersafe.base.crypto.ecdsa.IKeyPair Maven / Gradle / Ivy

The newest version!
package com.peersafe.base.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();

    String type();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy