Home
last modified time | relevance | path

Searched refs:MD5Context (Results 1 – 15 of 15) sorted by relevance

/third_party/gn/src/base/
Dmd5.h46 typedef char MD5Context[88]; typedef
50 void MD5Init(MD5Context* context);
55 void MD5Update(MD5Context* context, std::string_view data);
58 void MD5Final(MD5Digest* digest, MD5Context* context);
63 void MD5IntermediateFinal(MD5Digest* digest, const MD5Context* context);
Dmd5.cc158 void MD5Init(MD5Context* context) { in MD5Init()
172 void MD5Update(MD5Context* context, std::string_view data) { in MD5Update()
222 void MD5Final(MD5Digest* digest, MD5Context* context) { in MD5Final()
265 void MD5IntermediateFinal(MD5Digest* digest, const MD5Context* context) { in MD5IntermediateFinal()
268 MD5Context context_copy; in MD5IntermediateFinal()
288 MD5Context ctx; in MD5Sum()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dmd5_i.h12 struct MD5Context { struct
18 void MD5Init(struct MD5Context *context); argument
19 void MD5Update(struct MD5Context *context, unsigned char const *buf,
21 void MD5Final(unsigned char digest[16], struct MD5Context *context);
Dmd5-internal.c20 typedef struct MD5Context MD5_CTX;
87 void MD5Init(struct MD5Context *ctx) in MD5Init()
102 void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len) in MD5Update()
150 void MD5Final(unsigned char digest[16], struct MD5Context *ctx) in MD5Final()
Dcrypto_internal.c22 struct MD5Context md5;
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dmd5_i.h12 struct MD5Context { struct
18 void MD5Init(struct MD5Context *context); argument
19 void MD5Update(struct MD5Context *context, unsigned char const *buf,
21 void MD5Final(unsigned char digest[16], struct MD5Context *context);
Dmd5-internal.c20 typedef struct MD5Context MD5_CTX;
87 void MD5Init(struct MD5Context *ctx) in MD5Init()
102 void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len) in MD5Update()
150 void MD5Final(unsigned char digest[16], struct MD5Context *ctx) in MD5Final()
Dcrypto_internal.c22 struct MD5Context md5;
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Dmd5.h32 struct MD5Context struct
41 MD5Init(struct MD5Context *ctx); argument
44 MD5Update(struct MD5Context *ctx,
50 struct MD5Context *ctx);
Dmd5.c154 MD5Init(struct MD5Context *ctx) in MD5Init()
170 MD5Update(struct MD5Context *ctx, in MD5Update()
223 struct MD5Context *ctx) in MD5Final()
264 memset(ctx, 0, sizeof(struct MD5Context)); /* In case it's sensitive */ in MD5Final()
Ddigestauth.c107 struct MD5Context md5; in digest_calc_ha1()
155 struct MD5Context md5; in digest_calc_response()
405 struct MD5Context md5; in calculate_nonce()
/third_party/ffmpeg/libavformat/
Dmd5proto.c31 struct MD5Context { struct
37 struct MD5Context *c = h->priv_data; in md5_open() argument
52 struct MD5Context *c = h->priv_data; in md5_write()
59 struct MD5Context *c = h->priv_data; in md5_close()
95 .priv_data_size = sizeof(struct MD5Context),
/third_party/skia/third_party/externals/libjpeg-turbo/md5/
Dmd5.h43 typedef struct MD5Context { struct
49 extern void MD5Init(struct MD5Context *ctx); argument
50 extern void MD5Update(struct MD5Context *ctx, unsigned char *buf,
52 extern void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
Dmd5.c71 void MD5Init(struct MD5Context *ctx) in MD5Init()
86 void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned int len) in MD5Update()
134 void MD5Final(unsigned char digest[16], struct MD5Context *ctx) in MD5Final()
173 memset(ctx, 0, sizeof(struct MD5Context)); /* In case it's sensitive */ in MD5Final()
/third_party/NuttX/
DLICENSE7890 MD5Context structure, pass it to MD5Init, call MD5Update as