public static string FromPassphrase(string passphrase, byte publicKeyHash = 0) { return(FromPrivateKey(PrivateKey.FromPassphrase(passphrase), publicKeyHash)); }
public static PubKey FromPassphrase(string passphrase) { return(PrivateKey.FromPassphrase(passphrase).PubKey); }