Add hdb_entry_get_pkinit_hash().
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17827 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -219,6 +219,20 @@ hdb_entry_get_pkinit_acl(const hdb_entry *entry, const HDB_Ext_PKINIT_acl **a)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
krb5_error_code
|
||||||
|
hdb_entry_get_pkinit_hash(const hdb_entry *entry, const HDB_Ext_PKINIT_hash **a)
|
||||||
|
{
|
||||||
|
const HDB_extension *ext;
|
||||||
|
|
||||||
|
ext = hdb_find_extension(entry, choice_HDB_extension_data_pkinit_cert_hash);
|
||||||
|
if (ext)
|
||||||
|
*a = &ext->data.u.pkinit_cert_hash;
|
||||||
|
else
|
||||||
|
*a = NULL;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
hdb_entry_get_pw_change_time(const hdb_entry *entry, time_t *t)
|
hdb_entry_get_pw_change_time(const hdb_entry *entry, time_t *t)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user