name function krb5_auth_con more consistenly
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10080 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -300,36 +300,36 @@ krb5_auth_con_setremotesubkey(krb5_context context,
|
|||||||
}
|
}
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_auth_setcksumtype(krb5_context context,
|
krb5_auth_con_setcksumtype(krb5_context context,
|
||||||
krb5_auth_context auth_context,
|
krb5_auth_context auth_context,
|
||||||
krb5_cksumtype cksumtype)
|
krb5_cksumtype cksumtype)
|
||||||
{
|
{
|
||||||
auth_context->cksumtype = cksumtype;
|
auth_context->cksumtype = cksumtype;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_auth_getcksumtype(krb5_context context,
|
krb5_auth_con_getcksumtype(krb5_context context,
|
||||||
krb5_auth_context auth_context,
|
krb5_auth_context auth_context,
|
||||||
krb5_cksumtype *cksumtype)
|
krb5_cksumtype *cksumtype)
|
||||||
{
|
{
|
||||||
*cksumtype = auth_context->cksumtype;
|
*cksumtype = auth_context->cksumtype;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_auth_setkeytype (krb5_context context,
|
krb5_auth_con_setkeytype (krb5_context context,
|
||||||
krb5_auth_context auth_context,
|
krb5_auth_context auth_context,
|
||||||
krb5_keytype keytype)
|
krb5_keytype keytype)
|
||||||
{
|
{
|
||||||
auth_context->keytype = keytype;
|
auth_context->keytype = keytype;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_auth_getkeytype (krb5_context context,
|
krb5_auth_con_getkeytype (krb5_context context,
|
||||||
krb5_auth_context auth_context,
|
krb5_auth_context auth_context,
|
||||||
krb5_keytype *keytype)
|
krb5_keytype *keytype)
|
||||||
{
|
{
|
||||||
*keytype = auth_context->keytype;
|
*keytype = auth_context->keytype;
|
||||||
return 0;
|
return 0;
|
||||||
@@ -337,9 +337,9 @@ krb5_auth_getkeytype (krb5_context context,
|
|||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_auth_setenctype(krb5_context context,
|
krb5_auth_con_setenctype(krb5_context context,
|
||||||
krb5_auth_context auth_context,
|
krb5_auth_context auth_context,
|
||||||
krb5_enctype etype)
|
krb5_enctype etype)
|
||||||
{
|
{
|
||||||
if(auth_context->keyblock)
|
if(auth_context->keyblock)
|
||||||
krb5_free_keyblock(context, auth_context->keyblock);
|
krb5_free_keyblock(context, auth_context->keyblock);
|
||||||
@@ -351,16 +351,16 @@ krb5_auth_setenctype(krb5_context context,
|
|||||||
}
|
}
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_auth_getenctype(krb5_context context,
|
krb5_auth_con_getenctype(krb5_context context,
|
||||||
krb5_auth_context auth_context,
|
krb5_auth_context auth_context,
|
||||||
krb5_enctype *etype)
|
krb5_enctype *etype)
|
||||||
{
|
{
|
||||||
krb5_abortx(context, "unimplemented krb5_auth_getenctype called");
|
krb5_abortx(context, "unimplemented krb5_auth_getenctype called");
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_auth_getlocalseqnumber(krb5_context context,
|
krb5_auth_con_getlocalseqnumber(krb5_context context,
|
||||||
krb5_auth_context auth_context,
|
krb5_auth_context auth_context,
|
||||||
int32_t *seqnumber)
|
int32_t *seqnumber)
|
||||||
{
|
{
|
||||||
@@ -369,7 +369,7 @@ krb5_auth_getlocalseqnumber(krb5_context context,
|
|||||||
}
|
}
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_auth_setlocalseqnumber (krb5_context context,
|
krb5_auth_con_setlocalseqnumber (krb5_context context,
|
||||||
krb5_auth_context auth_context,
|
krb5_auth_context auth_context,
|
||||||
int32_t seqnumber)
|
int32_t seqnumber)
|
||||||
{
|
{
|
||||||
@@ -387,7 +387,7 @@ krb5_auth_getremoteseqnumber(krb5_context context,
|
|||||||
}
|
}
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_auth_setremoteseqnumber (krb5_context context,
|
krb5_auth_con_setremoteseqnumber (krb5_context context,
|
||||||
krb5_auth_context auth_context,
|
krb5_auth_context auth_context,
|
||||||
int32_t seqnumber)
|
int32_t seqnumber)
|
||||||
{
|
{
|
||||||
@@ -397,7 +397,7 @@ krb5_auth_setremoteseqnumber (krb5_context context,
|
|||||||
|
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_auth_getauthenticator(krb5_context context,
|
krb5_auth_con_getauthenticator(krb5_context context,
|
||||||
krb5_auth_context auth_context,
|
krb5_auth_context auth_context,
|
||||||
krb5_authenticator *authenticator)
|
krb5_authenticator *authenticator)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user