/*
*/
/*
* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
*
* Openvision retains the copyright to derivative works of
* this source code. Do *NOT* create a derivative of this
* source code before consulting with your legal department.
* Do *NOT* integrate *ANY* of this source code into another
* product before consulting with your legal department.
*
* For further information, read the top-level Openvision
* copyright which is contained in the top-level MIT Kerberos
* copyright.
*
* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
*
*/
/*
* Copyright 1993 OpenVision Technologies, Inc., All Rights Reserved
*
*/
#include <k5-int.h>
#include <kadm5/server_internal.h>
#include "misc.h"
/*
* Function: chpass_principal_wrapper_3
*
* Purpose: wrapper to kadm5_chpass_principal that checks to see if
* pw_min_life has been reached. if not it returns an error.
* otherwise it calls kadm5_chpass_principal
*
* Arguments:
* principal (input) krb5_principals whose password we are
* changing
* keepold (input) whether to preserve old keys
* n_ks_tuple (input) the number of key-salt tuples in ks_tuple
* ks_tuple (input) array of tuples indicating the caller's
* password (input) password we are going to change to.
* <return value> 0 on success error code on failure.
*
* Requires:
* kadm5_init to have been run.
*
* Effects:
* calls kadm5_chpass_principal which changes the kdb and the
* the admin db.
*
*/
int n_ks_tuple,
char *password)
{
/* Solaris Kerberos */
if (ret)
return ret;
password);
}
/*
* Function: randkey_principal_wrapper_3
*
* Purpose: wrapper to kadm5_randkey_principal which checks the
* password's min. life.
*
* Arguments:
* principal (input) krb5_principal whose password we are
* changing
* keepold (input) whether to preserve old keys
* n_ks_tuple (input) the number of key-salt tuples in ks_tuple
* ks_tuple (input) array of tuples indicating the caller's
* key (output) new random key
* <return value> 0, error code on error.
*
* Requires:
* kadm5_init needs to be run
*
* Effects:
* calls kadm5_randkey_principal
*
*/
int n_ks_tuple,
{
/* Solaris Kerberos */
if (ret)
return ret;
}
{
/* Solaris Kerberos */
if (ret)
return ret;
}
{
/* Solaris Kerberos */
if (ret)
return ret;
}