Add {get,set}enctype.
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@3599 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -267,6 +267,24 @@ krb5_auth_getcksumtype(krb5_context context,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
krb5_error_code
|
||||||
|
krb5_auth_setenctype(krb5_context context,
|
||||||
|
krb5_auth_context auth_context,
|
||||||
|
krb5_enctype etype)
|
||||||
|
{
|
||||||
|
auth_context->enctype = etype;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
krb5_error_code
|
||||||
|
krb5_auth_getenctype(krb5_context context,
|
||||||
|
krb5_auth_context auth_context,
|
||||||
|
krb5_enctype *etype)
|
||||||
|
{
|
||||||
|
*etype = auth_context->enctype;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_auth_getlocalseqnumber(krb5_context context,
|
krb5_auth_getlocalseqnumber(krb5_context context,
|
||||||
krb5_auth_context auth_context,
|
krb5_auth_context auth_context,
|
||||||
|
Reference in New Issue
Block a user