My main data-storage system is built on Django. However, due to inevitable reasons, I have to develop another desktop application for data-entry that uses .NET platform.
However, how can I authenticate the .NET application based on Django user authentication? I looked at the encrypted password, and apparently it uses some weird algorithm ( I thought it is going to standard AES or Triple-DES encryption, which can be easily done in .NET). So because of that, I cannot compare the password entered by user (in the .NET app) with the encrypted password in the database.
Is there any API/ways of doing this smartly?