Look at the hash function's implementation? Do you see anything specific to laravel ?
As far as i know, it uses password_hash(), you can implement the same in your web service?
I have used laravel 5.1 hash function(default password encryption) to register and login. Now, i would like to use same db for a mobile app and the web services are going to written in a sub domain . So, how to generate the same password for authentication without using laravel(may be through core php) or what is the best solution for this?
Thanks.
Look at the hash function's implementation? Do you see anything specific to laravel ?
As far as i know, it uses password_hash(), you can implement the same in your web service?
Please or to participate in this conversation.