こんにちは私はこれを間違った方法で行った可能性があると思います。パスワードをハッシュ/ソルトする方法を誰かが説明するのを手伝ってもらえますか。クライアントまたはWebサービスから実行しますか?
パスワードデータメンバーを持つデータコントラクトがあります。私のサービスでは、保存する前にパスワードのハッシュ/ソルトを作成するためにこれを行います。
So here is the process in which I was thinking.
Rest Service has https for secure connection
User creates account (along with password)
//to stop packet sniffing when user creates account https is used during POST so no one can see the password?
web service then creates a hash of the password to store it
//so if anyone did get access to the service/database they couldnt make much use of the data in terms of breaching accounts
Then some means to authenticate that user there after
これは正しいです?