libpq 6.0.1

Safe binding for libpq
Documentation
use crate::connection::PqString;

/**
 * Prepares the md5-encrypted form of a PostgreSQL password.
 *
 * On success, this method returns [`PqString`].
 *
 * See [PQencryptPassword](https://www.postgresql.org/docs/current/libpq-misc.html#LIBPQ-PQENCRYPTPASSWORD).
 */
#[deprecated(note = "Use libpq::Connection::encrypt_password instead")]
pub fn password(passwd: &str, user: &str) -> crate::errors::Result<PqString> {
    let c_passwd = crate::ffi::to_cstr(passwd);
    let c_user = crate::ffi::to_cstr(user);

    unsafe {
        let ptr = pq_sys::PQencryptPassword(c_passwd.as_ptr(), c_user.as_ptr());
        let encrypt = PqString::from_raw(ptr);

        Ok(encrypt)
    }
}

#[cfg(test)]
mod test {
    #[test]
    fn password() {
        #![allow(deprecated)]
        assert_eq!(
            crate::encrypt::password("1234", "postgres").map(|x| x.to_string_lossy().to_string()),
            Ok("md524bb002702969490e41e26e1a454036c".to_string())
        );
    }
}