HomeSort by relevance Sort by last modified time
    Searched refs:MD5Context (Results 1 - 19 of 19) sorted by null

  /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
56 MD5Init(struct MD5Context *ctx)
72 MD5Update(struct MD5Context *ctx, md5byte const *buf, unsigned len)
117 MD5Final(md5byte digest[16], struct MD5Context *ctx)
vpxdec.c 311 MD5Context *md5_ctx = out = malloc(sizeof(MD5Context));
  /external/chromium/base/
md5.h 22 // MD5Context ctx; // intermediate MD5 data: do not use
40 typedef char MD5Context[88];
48 void MD5Init(MD5Context* context);
53 void MD5Update(MD5Context* context, const void* buf, size_t len);
56 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/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)
crypto_internal.c 43 struct MD5Context {
59 struct MD5Context md5;
  /external/chromium/net/http/
http_vary_data.h 73 MD5Context* context);
http_vary_data.cc 22 MD5Context ctx;
132 MD5Context* ctx) {
  /external/chromium/net/third_party/nss/ssl/bodge/
blapi.h 757 extern MD5Context *MD5_NewContext(void);
765 extern void MD5_DestroyContext(MD5Context *cx, PRBool freeit);
770 extern void MD5_Begin(MD5Context *cx);
778 extern void MD5_Update(MD5Context *cx,
789 extern void MD5_End(MD5Context *cx, unsigned char *digest,
797 extern unsigned int MD5_FlattenSize(MD5Context *cx);
805 extern SECStatus MD5_Flatten(MD5Context *cx,unsigned char *space);
813 extern MD5Context * MD5_Resurrect(unsigned char *space, void *arg);
814 extern void MD5_Clone(MD5Context *dest, MD5Context *src)
    [all...]
loader.h 178 MD5Context *(* p_MD5_NewContext)(void);
180 void (* p_MD5_DestroyContext)(MD5Context *cx, PRBool freeit);
182 void (* p_MD5_Begin)(MD5Context *cx);
184 void (* p_MD5_Update)(MD5Context *cx,
187 void (* p_MD5_End)(MD5Context *cx, unsigned char *digest,
190 unsigned int (* p_MD5_FlattenSize)(MD5Context *cx);
192 SECStatus (* p_MD5_Flatten)(MD5Context *cx,unsigned char *space);
194 MD5Context * (* p_MD5_Resurrect)(unsigned char *space, void *arg);
196 void (* p_MD5_TraceState)(MD5Context *cx);
423 void (* p_MD5_Clone)(MD5Context *dest, MD5Context *src)
    [all...]
loader.c 592 MD5Context *
601 MD5_DestroyContext(MD5Context *cx, PRBool freeit)
609 MD5_Begin(MD5Context *cx)
617 MD5_Update(MD5Context *cx, const unsigned char *input, unsigned int inputLen)
625 MD5_End(MD5Context *cx, unsigned char *digest,
634 MD5_FlattenSize(MD5Context *cx)
642 MD5_Flatten(MD5Context *cx,unsigned char *space)
649 MD5Context *
658 MD5_TraceState(MD5Context *cx)
    [all...]
  /external/dropbear/
keyimport.c 542 struct MD5Context md5c;
    [all...]
  /external/chromium/net/third_party/nss/ssl/
derive.c 126 #define md5Ctx ((MD5Context *)md5buf)
457 #define md5Ctx ((MD5Context *)md5buf)
ssl3con.c     [all...]

Completed in 1242 milliseconds