コード例 #1
0
ファイル: UserWallet.cs プロジェクト: AlexRos101/QURAS_CORE
        public static UserWallet Create(string path, SecureString password, KeyType nVersion = KeyType.Transparent)
        {
            UserWallet wallet = new UserWallet(path, password, true);

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

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