OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:md5context
(Results
1 - 25
of
34
) sorted by null
1
2
/external/wpa_supplicant_8/src/crypto/
md5_i.h
18
struct
MD5Context
{
24
void MD5Init(struct
MD5Context
*context);
25
void MD5Update(struct
MD5Context
*context, unsigned char const *buf,
27
void MD5Final(unsigned char digest[16], struct
MD5Context
*context);
md5-internal.c
26
typedef struct
MD5Context
MD5_CTX;
63
*
MD5Context
structure, pass it to MD5Init, call MD5Update as
90
void MD5Init(struct
MD5Context
*ctx)
105
void MD5Update(struct
MD5Context
*ctx, unsigned char const *buf, unsigned len)
153
void MD5Final(unsigned char digest[16], struct
MD5Context
*ctx)
crypto_internal.c
25
struct
MD5Context
md5;
/external/libvpx/
md5_utils.h
13
*
MD5Context
structure, pass it to MD5Init, call MD5Update as
29
typedef struct
MD5Context
MD5Context
;
30
struct
MD5Context
37
void MD5Init(struct
MD5Context
*context);
38
void MD5Update(struct
MD5Context
*context, md5byte const *buf, unsigned len);
39
void MD5Final(unsigned char digest[16], struct
MD5Context
*context);
md5_utils.c
13
*
MD5Context
structure, pass it to MD5Init, call MD5Update as
54
MD5Init(struct
MD5Context
*ctx)
70
MD5Update(struct
MD5Context
*ctx, md5byte const *buf, unsigned len)
115
MD5Final(md5byte digest[16], struct
MD5Context
*ctx)
/external/wpa_supplicant/
md5.h
26
struct
MD5Context
;
28
void MD5Init(struct
MD5Context
*context);
29
void MD5Update(struct
MD5Context
*context, unsigned char const *buf,
31
void MD5Final(unsigned char digest[16], struct
MD5Context
*context);
md5.c
112
struct
MD5Context
{
119
static void MD5Init(struct
MD5Context
*context);
120
static void MD5Update(struct
MD5Context
*context, unsigned char const *buf,
122
static void MD5Final(unsigned char digest[16], struct
MD5Context
*context);
127
typedef struct
MD5Context
MD5_CTX;
162
*
MD5Context
structure, pass it to MD5Init, call MD5Update as
189
void MD5Init(struct
MD5Context
*ctx)
204
void MD5Update(struct
MD5Context
*ctx, unsigned char const *buf, unsigned len)
252
void MD5Final(unsigned char digest[16], struct
MD5Context
*ctx)
crypto_internal.c
42
struct
MD5Context
{
58
struct
MD5Context
md5;
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
md5.h
26
struct
MD5Context
;
28
void MD5Init(struct
MD5Context
*context);
29
void MD5Update(struct
MD5Context
*context, unsigned char const *buf,
31
void MD5Final(unsigned char digest[16], struct
MD5Context
*context);
md5.c
112
struct
MD5Context
{
119
static void MD5Init(struct
MD5Context
*context);
120
static void MD5Update(struct
MD5Context
*context, unsigned char const *buf,
122
static void MD5Final(unsigned char digest[16], struct
MD5Context
*context);
127
typedef struct
MD5Context
MD5_CTX;
162
*
MD5Context
structure, pass it to MD5Init, call MD5Update as
189
void MD5Init(struct
MD5Context
*ctx)
204
void MD5Update(struct
MD5Context
*ctx, unsigned char const *buf, unsigned len)
252
void MD5Final(unsigned char digest[16], struct
MD5Context
*ctx)
/external/chromium/third_party/libjingle/source/talk/base/
md5.h
12
*
MD5Context
structure, pass it to MD5Init, call MD5Update as
26
typedef struct
MD5Context
MD5_CTX;
30
struct
MD5Context
{
36
void MD5Init(struct
MD5Context
*context);
37
void MD5Update(struct
MD5Context
*context, md5byte const *buf, unsigned len);
38
void MD5Final(unsigned char digest[16], struct
MD5Context
*context);
md5c.c
13
*
MD5Context
structure, pass it to MD5Init, call MD5Update as
47
MD5Init(struct
MD5Context
*ctx)
63
MD5Update(struct
MD5Context
*ctx, unsigned char const *buf, unsigned len)
113
MD5Final(unsigned char digest[16], struct
MD5Context
*ctx)
/external/chromium/base/
md5.h
25
//
MD5Context
ctx; // intermediate MD5 data: do not use
43
typedef char
MD5Context
[88];
51
BASE_API void MD5Init(
MD5Context
* context);
56
BASE_API void MD5Update(
MD5Context
* context, const void* buf, size_t len);
59
BASE_API void MD5Final(MD5Digest* digest,
MD5Context
* pCtx);
md5.cc
16
*
MD5Context
structure, pass it to MD5Init, call MD5Update as
148
void MD5Init(
MD5Context
*pCtx){
162
void MD5Update(
MD5Context
*pCtx, const void *inbuf, size_t len){
212
void MD5Final(MD5Digest* digest,
MD5Context
*pCtx){
269
MD5Context
ctx;
/external/webkit/Tools/DumpRenderTree/cg/
PixelDumpSupportCG.cpp
81
MD5_CTX
md5Context
;
82
MD5_Init(&
md5Context
);
90
MD5_Update(&
md5Context
, buffer, 4 * pixelsWide);
97
MD5_Update(&
md5Context
, bitmapData, 4 * pixelsWide);
102
MD5_Final(hash, &
md5Context
);
/external/chromium/chrome/browser/sync/util/
crypto_helpers.h
19
MD5Context
context_;
/external/webkit/Tools/DumpRenderTree/cairo/
PixelDumpSupportCairo.cpp
75
MD5
md5Context
;
78
md5Context
.addBytes(bitmapData, 4 * pixelsWide);
82
md5Context
.checksum(hash);
/external/flac/libFLAC/include/private/
md5.h
16
*
MD5Context
structure, pass it to MD5Init, call MD5Update as
/external/chromium/net/http/
http_vary_data.cc
23
MD5Context
ctx;
118
MD5Context
* ctx) {
http_vary_data.h
74
MD5Context
* context);
/external/libvpx/examples/
decode_to_md5.txt
29
MD5Context
md5;
/external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file.cc
56
bool ReadArray(T* ptr, size_t nmemb, FILE* fp,
MD5Context
* context) {
70
bool WriteArray(const T* ptr, size_t nmemb, FILE* fp,
MD5Context
* context) {
86
FILE* fp,
MD5Context
* context) {
110
bool WriteVector(const std::vector<T>& values, FILE* fp,
MD5Context
* context) {
124
FILE* fp,
MD5Context
* context) {
139
FILE* fp,
MD5Context
* context) {
186
MD5Context
* context) {
496
MD5Context
context;
615
MD5Context
context;
prefix_set.cc
190
MD5Context
context;
243
MD5Context
context;
/external/chromium/chrome/common/
visitedlink_common.cc
82
MD5Context
ctx;
/external/chromium/chrome/browser/bookmarks/
bookmark_codec.h
153
MD5Context
md5_context_;
Completed in 445 milliseconds
1
2