Searched defs:mdContext (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/lib/gss_mechs/mech_krb5/crypto/md4/
H A Dmd4.c85 krb5_MD4Init (krb5_MD4_CTX *mdContext) argument
87 mdContext->i[0] = mdContext->i[1] = (krb5_ui_4)0;
91 mdContext->buf[0] = 0x67452301UL;
92 mdContext->buf[1] = 0xefcdab89UL;
93 mdContext->buf[2] = 0x98badcfeUL;
94 mdContext->buf[3] = 0x10325476UL;
98 krb5_MD4Update (krb5_MD4_CTX *mdContext, const unsigned char *inBuf, unsigned int inLen) argument
105 mdi = (int)((mdContext->i[0] >> 3) & 0x3F);
108 if ((mdContext
131 krb5_MD4Final(krb5_MD4_CTX *mdContext) argument
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_dh/backend/crypto/
H A Dmd5.c48 ** (1) Initialize a context buffer mdContext using MD5Init **
49 ** (2) Call MD5Update on mdContext and M **
50 ** (3) Call MD5Final on mdContext **
51 ** The message digest is now in mdContext->digest[0...15] **
103 * mdContext. All fields are set to zero.
105 void MD5Init (MD5_CTX *mdContext) argument
107 mdContext->i[0] = mdContext->i[1] = (UINT4)0;
112 mdContext->buf[0] = (UINT4)0x67452301;
113 mdContext
123 MD5Update(MD5_CTX *mdContext, unsigned char *inBuf, unsigned int inLen) argument
159 MD5Final(MD5_CTX *mdContext) argument
[all...]

Completed in 30 milliseconds