In this activity, you will use HMAC (Hash-based Message Authentication Code) to ensure data integrity.
Unlike Hashing (which just scrambles data), HMAC uses a Secret Key. Only someone with the key can generate a valid signature.
Complete the sign_message function:
secret_key and message are bytes (use .encode()).hmac.new(key, msg, hashlib.sha256)..hexdigest() of the HMAC object.