Exemple #1
0
        public WalletManager(IWalletManagerConfig config, ISignatureFactory signatureFactory, IHashFactory hashFactory)
        {
            this.config = config;

            this.signatureFactory = signatureFactory;
            this.hashFactory      = hashFactory;

            wallets = new LinkedList <Wallet>();

            foreach (string walletPath in Directory.GetFiles(config.WalletDirectoryPath, "*.wallet"))
            {
                JsonSerializer serializer = new JsonSerializer();
                byte[]         walletBlob;

                using (Stream jsonFile = File.Open(walletPath, FileMode.Open, FileAccess.Read, FileShare.None))
                    using (StreamReader reader = new StreamReader(jsonFile))
                        using (JsonReader jsonReader = new JsonTextReader(reader))
                            walletBlob = serializer.Deserialize <byte[]>(jsonReader);

                ISignatureProvider signer = signatureFactory.GetSignatureProvider(walletBlob);
                Wallet             wallet = new Wallet(signer, hashFactory);

                wallets.Add(wallet);
            }
        }
Exemple #2
0
        public Wallet AddNewWallet()
        {
            ISignatureProvider signer = signatureFactory.GetSignatureProvider();
            Wallet             wallet = new Wallet(signer, hashFactory);

            string walletName = Path.GetRandomFileName();

            byte[] walletBlob = signer.ExportKeyPairBlob();

            walletName = Path.ChangeExtension(walletName, "wallet");

            string         walletPath = Path.Combine(config.WalletDirectoryPath, walletName);
            JsonSerializer serializer = new JsonSerializer();

            using (Stream jsonFile = File.Open(walletPath, FileMode.Create, FileAccess.Write, FileShare.None))
                using (StreamWriter writer = new StreamWriter(jsonFile))
                    using (JsonWriter jsonWriter = new JsonTextWriter(writer))
                        serializer.Serialize(jsonWriter, walletBlob);

            wallets.Add(wallet);

            return(wallet);
        }