1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
krb5_change_password - Change a password for an existing Kerberos account.
============================================================================
..
.. c:function:: krb5_error_code krb5_change_password(krb5_context context, krb5_creds * creds, const char * newpw, int * result_code, krb5_data * result_code_string, krb5_data * result_string)
..
:param:
**[in]** **context** - Library context
**[in]** **creds** - Credentials for kadmin/changepw service
**[in]** **newpw** - New password
**[out]** **result_code** - Numeric error code from server
**[out]** **result_code_string** - String equivalent to *result_code*
**[out]** **result_string** - Change password response from the KDC
..
:retval:
- 0 Success; otherwise - Kerberos error codes
..
Change the password for the existing principal identified by *creds* .
The possible values of the output *result_code* are:
- :data:`KRB5_KPASSWD_SUCCESS` (0) - success
- :data:`KRB5_KPASSWD_MALFORMED` (1) - Malformed request error
- :data:`KRB5_KPASSWD_HARDERROR` (2) - Server error
- :data:`KRB5_KPASSWD_AUTHERROR` (3) - Authentication error
- :data:`KRB5_KPASSWD_SOFTERROR` (4) - Password change rejected
..
|