(krb5_keyblock_get_enctype): return enctype of keyblock

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12502 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-07-22 21:40:17 +00:00
parent cc0a5435fe
commit 9caa168b54

View File

@@ -79,3 +79,9 @@ krb5_copy_keyblock (krb5_context context,
*to = k;
return krb5_copy_keyblock_contents (context, inblock, k);
}
krb5_enctype
krb5_keyblock_get_enctype(const krb5_keyblock *block)
{
return block->keytype;
}