Gibt es ein Bash-Skript, um einen HMAC-SHA1Hash zu generieren ? Ich suche etwas, das dem folgenden PHP-Code entspricht: hash_hmac("sha1", "value", "key");
Ich versuche, eine Signatur mit dem HMAC-SHA256-Algorithmus zu erstellen, und dies ist mein Code. Ich verwende die US-ASCII-Codierung. final Charset asciiCs = Charset.forName("US-ASCII"); final Mac sha256_HMAC = Mac.getInstance("HmacSHA256"); final SecretKeySpec secret_key = new javax.crypto.spec.SecretKeySpec(asciiCs.encode("key").array(), "HmacSHA256"); final byte[] mac_data = sha256_HMAC.doFinal(asciiCs.encode("The quick brown fox jumps over the lazy dog").array()); String result …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.