SynopsisObtain a pointer to the user password. Prototype#include "um.h" char_t* umGetUserPassword(char_t * user) Parameters
DescriptionPersisted password is decrypted before being returned by the function. Returned password must be deleted by the bfree function. Return ValueumGetUserPassword returns NULL if there is an error, or a pointer to a new copy of the password on success. Examplechar_t * pwd = umGetUserPassword("misterripley"); See AlsoumSetUserPassword, umAddUser, bfree
|