Esempio n. 1
0
        public static UserWallet Create(string path, SecureString password)
        {
            UserWallet wallet = new UserWallet(path, password, true);

            wallet.CreateKey();
            return(wallet);
        }
Esempio n. 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);
        }