コード例 #1
0
ファイル: HashCash.cs プロジェクト: jackullrich/EmulateMe
        public byte[] DecryptWithSolution(byte[] buffer)
        {
            if (solution == null)
            {
                throw new NullReferenceException();
            }

            return(encryptionAlgorithm.Decrypt(buffer, hashAlgorithm.ComputeHash(solution)));
        }