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.
我已经实现了 HMAC 在 python 中散列密码,如下所示
SECRET_KEY='SOME_KEY' digest = hmac.new(SECRET_KEY,str(bundle.data['password']), hashlib.sha256).hexdigest()
谁能告诉我如何在Android上准确地做到这一点