示例#1
0
        public static UserWallet Create(string path, SecureString password)
        {
            UserWallet wallet = new UserWallet(path, password, true);

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

            wallet.CreateKey(nVersion);
            return(wallet);
        }