(kadm5_chpass_principal_with_key): add

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8058 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2000-03-23 22:58:26 +00:00
parent e30b1fc5d9
commit 44c00d67c1
2 changed files with 26 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 1997-1999 Kungliga Tekniska H<>gskolan
* Copyright (c) 1997-2000 Kungliga Tekniska H<>gskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
@@ -210,6 +210,13 @@ kadm5_c_chpass_principal __P((
krb5_principal princ,
char *password));
kadm5_ret_t
kadm5_c_chpass_principal_with_key __P((
void *server_handle,
krb5_principal princ,
int n_key_data,
krb5_key_data *key_data));
kadm5_ret_t
kadm5_c_create_principal __P((
void *server_handle,
@@ -335,6 +342,13 @@ kadm5_chpass_principal __P((
krb5_principal princ,
char *password));
kadm5_ret_t
kadm5_chpass_principal_with_key __P((
void *server_handle,
krb5_principal princ,
int n_key_data,
krb5_key_data *key_data));
kadm5_ret_t
kadm5_create_principal __P((
void *server_handle,

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 1997 Kungliga Tekniska H<>gskolan
* Copyright (c) 1997 - 2000 Kungliga Tekniska H<>gskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
@@ -45,6 +45,16 @@ kadm5_chpass_principal(void *server_handle,
return __CALL(chpass_principal, (server_handle, princ, password));
}
kadm5_ret_t
kadm5_chpass_principal_with_key(void *server_handle,
krb5_principal princ,
int n_key_data,
krb5_key_data *key_data)
{
return __CALL(chpass_principal_with_key,
(server_handle, princ, n_key_data, key_data));
}
kadm5_ret_t
kadm5_create_principal(void *server_handle,
kadm5_principal_ent_t princ,