Remove zerocash's SHA256 implementation

This commit is contained in:
Sean Bowe
2016-03-31 15:59:06 -06:00
parent 8466467a35
commit d3612b1c94
10 changed files with 107 additions and 281 deletions

View File

@@ -13,7 +13,7 @@
#ifndef INCREMENTALMERKLETREE_H_
#define INCREMENTALMERKLETREE_H_
#include "utils/sha256.h"
#include "crypto/sha256.h"
#include "Zerocash.h"
#include <vector>
@@ -59,7 +59,7 @@ private:
class IncrementalMerkleNode {
public:
SHA256_CTX_mod ctx256;
CSHA256 ctx256;
IncrementalMerkleNode* left;
IncrementalMerkleNode* right;
std::vector<bool> value;