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:
Johan Danielsson
1997-10-13 21:21:33 +00:00
parent 9a1fb9c586
commit 5926fa4daf

View File

@@ -267,6 +267,24 @@ krb5_auth_getcksumtype(krb5_context context,
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_auth_getlocalseqnumber(krb5_context context,
krb5_auth_context auth_context,