1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

Add a dash of const here and there...

(This used to be commit 413a46292b4e963343abce2428955305052e9cb4)
This commit is contained in:
Andrew Bartlett 2002-03-02 04:41:55 +00:00
parent 0bc19c0bdb
commit e51c3224d0
2 changed files with 6 additions and 6 deletions

View File

@ -23,7 +23,7 @@
/****************************************************************************
represent a credential as a string
****************************************************************************/
char *credstr(uchar *cred)
char *credstr(const uchar *cred)
{
static fstring buf;
slprintf(buf, sizeof(buf) - 1, "%02X%02X%02X%02X%02X%02X%02X%02X",
@ -41,7 +41,7 @@ Input: 8 byte challenge block
Output:
8 byte session key
****************************************************************************/
void cred_session_key(DOM_CHAL *clnt_chal, DOM_CHAL *srv_chal, char *pass,
void cred_session_key(const DOM_CHAL *clnt_chal, const DOM_CHAL *srv_chal, const uchar *pass,
uchar session_key[8])
{
uint32 sum[2];
@ -53,7 +53,7 @@ void cred_session_key(DOM_CHAL *clnt_chal, DOM_CHAL *srv_chal, char *pass,
SIVAL(sum2,0,sum[0]);
SIVAL(sum2,4,sum[1]);
cred_hash1(session_key, sum2,(unsigned char *)pass);
cred_hash1(session_key, sum2, pass);
/* debug output */
DEBUG(4,("cred_session_key\n"));

View File

@ -330,7 +330,7 @@ void E_old_pw_hash( unsigned char *p14, const unsigned char *in, unsigned char *
smbhash(out+8, in+8, p14+7, 1);
}
void cred_hash1(unsigned char *out, const unsigned char *in,unsigned char *key)
void cred_hash1(unsigned char *out, const unsigned char *in, const unsigned char *key)
{
unsigned char buf[8];
@ -338,7 +338,7 @@ void cred_hash1(unsigned char *out, const unsigned char *in,unsigned char *key)
smbhash(out, buf, key+9, 1);
}
void cred_hash2(unsigned char *out, const unsigned char *in,unsigned char *key)
void cred_hash2(unsigned char *out, const unsigned char *in, const unsigned char *key)
{
unsigned char buf[8];
static unsigned char key2[8];
@ -348,7 +348,7 @@ void cred_hash2(unsigned char *out, const unsigned char *in,unsigned char *key)
smbhash(out, buf, key2, 1);
}
void cred_hash3(unsigned char *out,unsigned char *in,unsigned char *key, int forw)
void cred_hash3(unsigned char *out, unsigned char *in, const unsigned char *key, int forw)
{
static unsigned char key2[8];