Switch to PKCS5_PBKDF2_HMAC and remove pbkdf2.h, pbkdf2.cpp
[novacoin.git] / src / pbkdf2.h
diff --git a/src/pbkdf2.h b/src/pbkdf2.h
deleted file mode 100644 (file)
index 4c55fd9..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (c) 2013 NovaCoin Developers
-
-#ifndef PBKDF2_H
-#define PBKDF2_H
-
-#include <openssl/sha.h>
-#include <stdint.h>
-
-typedef struct HMAC_SHA256Context {
-    SHA256_CTX ictx;
-    SHA256_CTX octx;
-} HMAC_SHA256_CTX;
-
-void
-HMAC_SHA256_Init(HMAC_SHA256_CTX * ctx, const void * _K, size_t Klen);
-
-void
-HMAC_SHA256_Update(HMAC_SHA256_CTX * ctx, const void *in, size_t len);
-
-void
-HMAC_SHA256_Final(unsigned char digest[32], HMAC_SHA256_CTX * ctx);
-
-void
-PBKDF2_SHA256(const uint8_t * passwd, size_t passwdlen, const uint8_t * salt,
-    size_t saltlen, uint64_t c, uint8_t * buf, size_t dkLen);
-
-#endif // PBKDF2_H