Password encryption in database

Hello!

Which methode is applied for encrypting the passwords of the users in
the database?

Because in my case the user management is centralized with php scripts
and I want to change the passwords with the centralized user management.

I don’t want to use the htaccess methode of an apache server.

thx for infos.

steve

Which methode is applied for encrypting the passwords of the users in
the database?

they’re note encrypted. They’re run through a one way hash. I don’t
remember which one, it should be easy to find in the code.

I don’t want to use the htaccess methode of an apache server.

Do you mean you don’t want to use apache, or you don’t want to use
apache’s htaccess? RT has no concept of htaccess, it either uses its
internal stuff, or it trusts what it gets handed. And apache can be
configured to use one of many different authentication mechanisms, not
just htaccess.

seph