Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のように、PythonでパスワードをハッシュするためにHMACを実装しました
SECRET_KEY='SOME_KEY' digest = hmac.new(SECRET_KEY,str(bundle.data['password']), hashlib.sha256).hexdigest()
Androidでこれを正確に行う方法を誰か教えてもらえますか