io.github.novacrypto.bip32.derivation.CkdFunctionDerive Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cwvj Show documentation
Show all versions of cwvj Show documentation
Java sdk for Dapps interact with cwv blockchain node
The newest version!
package io.github.novacrypto.bip32.derivation;
public final class CkdFunctionDerive implements Derive {
private final CkdFunction standardCkdFunction;
private final Node rootNode;
public CkdFunctionDerive(CkdFunction standardCkdFunction, Node rootNode) {
this.standardCkdFunction = standardCkdFunction;
this.rootNode = rootNode;
}
public Node derive(CharSequence derivationPath) {
return derive(derivationPath, CharSequenceDerivation.INSTANCE);
}
public Node derive(Path derivationPath, Derivation derivation) {
return derivation.derive(this.rootNode, derivationPath, this.standardCkdFunction);
}
}
/* Location: C:\Users\Administrator\Desktop\mnemonic-sdk-1.0.0.jar!\io\github\novacrypto\bip32\derivation\CkdFunctionDerive.class
* Java compiler version: 7 (51.0)
* JD-Core Version: 1.1.3
*/
© 2015 - 2025 Weber Informatics LLC | Privacy Policy