public static UserWallet Create(string path, SecureString password) { UserWallet wallet = new UserWallet(path, password, true); wallet.CreateKey(); return(wallet); }
public static UserWallet Create(string path, SecureString password, KeyType nVersion = KeyType.Transparent) { UserWallet wallet = new UserWallet(path, password, true); wallet.CreateKey(nVersion); return(wallet); }