summaryrefslogtreecommitdiff
path: root/src/mongo/crypto/crypto_tom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/crypto/crypto_tom.cpp')
-rw-r--r--src/mongo/crypto/crypto_tom.cpp90
1 files changed, 41 insertions, 49 deletions
diff --git a/src/mongo/crypto/crypto_tom.cpp b/src/mongo/crypto/crypto_tom.cpp
index 54472b37087..a629dff945d 100644
--- a/src/mongo/crypto/crypto_tom.cpp
+++ b/src/mongo/crypto/crypto_tom.cpp
@@ -38,59 +38,51 @@
namespace mongo {
namespace crypto {
- /*
- * Computes a SHA-1 hash of 'input'.
- */
- bool sha1(const unsigned char* input,
- const size_t inputLen,
- unsigned char* output) {
- hash_state hashState;
- if (sha1_init(&hashState) != CRYPT_OK) {
- return false;
- }
- if (sha1_process(&hashState, input, inputLen) != CRYPT_OK) {
- return false;
- }
- if (sha1_done(&hashState, output) != CRYPT_OK) {
- return false;
- }
-
- return true;
+/*
+ * Computes a SHA-1 hash of 'input'.
+ */
+bool sha1(const unsigned char* input, const size_t inputLen, unsigned char* output) {
+ hash_state hashState;
+ if (sha1_init(&hashState) != CRYPT_OK) {
+ return false;
+ }
+ if (sha1_process(&hashState, input, inputLen) != CRYPT_OK) {
+ return false;
+ }
+ if (sha1_done(&hashState, output) != CRYPT_OK) {
+ return false;
}
- /*
- * Computes a HMAC SHA-1 keyed hash of 'input' using the key 'key'
- */
- bool hmacSha1(const unsigned char* key,
- const size_t keyLen,
- const unsigned char* input,
- const size_t inputLen,
- unsigned char* output,
- unsigned int* outputLen) {
- if (!key || !input || !output) {
- return false;
- }
+ return true;
+}
- static int hashId = -1;
- if (hashId == -1) {
- register_hash (&sha1_desc);
- hashId = find_hash("sha1");
- }
+/*
+ * Computes a HMAC SHA-1 keyed hash of 'input' using the key 'key'
+ */
+bool hmacSha1(const unsigned char* key,
+ const size_t keyLen,
+ const unsigned char* input,
+ const size_t inputLen,
+ unsigned char* output,
+ unsigned int* outputLen) {
+ if (!key || !input || !output) {
+ return false;
+ }
- unsigned long sha1HashLen = 20;
- if (hmac_memory(hashId,
- key,
- keyLen,
- input,
- inputLen,
- output,
- &sha1HashLen) != CRYPT_OK) {
- return false;
- }
+ static int hashId = -1;
+ if (hashId == -1) {
+ register_hash(&sha1_desc);
+ hashId = find_hash("sha1");
+ }
- *outputLen = sha1HashLen;
- return true;
+ unsigned long sha1HashLen = 20;
+ if (hmac_memory(hashId, key, keyLen, input, inputLen, output, &sha1HashLen) != CRYPT_OK) {
+ return false;
}
-} // namespace crypto
-} // namespace mongo
+ *outputLen = sha1HashLen;
+ return true;
+}
+
+} // namespace crypto
+} // namespace mongo