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

com.github.DNAProject.dnaid.DnaIdSigner Maven / Gradle / Ivy

The newest version!
package com.github.DNAProject.dnaid;

import com.github.DNAProject.account.Account;

public class DnaIdSigner {
    String dnaId;
    DnaIdPubKey pubKey;
    Account signer;

    public DnaIdSigner(String dnaId, DnaIdPubKey pubKey, Account signer) {
        this.dnaId = dnaId;
        this.pubKey = pubKey;
        this.signer = signer;
    }

//    public byte[] hash(byte[] msg) throws Exception {
//        return pubKey.type.getAlg().hash(msg);
//    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy