summaryrefslogtreecommitdiff
path: root/port/sha1_portable.h
blob: 31db30528e8fc566f8b8af660813ef2a08913663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.

#ifndef STORAGE_LEVELDB_PORT_SHA1_PORTABLE_H_
#define STORAGE_LEVELDB_PORT_SHA1_PORTABLE_H_

#include <stddef.h>

namespace leveldb {
namespace port {

// Compute the SHA1 hash value of "data[0..len-1]" and store it in
// "hash_array[0..19]".  hash_array must have 20 bytes of space available.
//
// This function is portable but may not be as fast as a version
// optimized for your platform.  It is provided as a default method
// that can be used when porting leveldb to a new platform if no
// better SHA1 hash implementation is available.
void SHA1_Hash_Portable(const char* data, size_t len, char* hash_array);

}
}

#endif  // STORAGE_LEVELDB_PORT_SHA1_PORTABLE_H_