Wygeneruj hmak HMACH SHA256 w Python

import hmac
import hashlib

hmac.new(secret.encode(), data_str.encode(), hashlib.sha256).hexdigest()
Muhammad Zubair