python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Sign SHA512-HMAC with private key in java
I want to build a function that sign a SHA512 HMAC with a Private key with a password to open that file. I have done that with Javascript but I'm not able to do it in JAVA. here is my code in Javascri...
AQattorah
Votes: 0
Answers: 1
c++ HMAC sha512 bad coding
I'm trying code a openssl HMAC SHA512 encryption but i compare my result with some online pages such HMAC-SHA256 Online Generator Tool and the result is not the same I can not figure out what i'm doin...
Filipe Brígido
Votes: 0
Answers: 1
Generate SHA256 HMAC signature in Python
I'm trying to generate a SHA256 HMAC signature for a FTX websocket. I am using the params fromt he official example https://docs.ftx.com/#private-channels.
It should generate d10b5a67a1a941ae9463a60b2...

Novice Python charmer
Votes: 0
Answers: 2
KMAC algorithm for KeyGenerator in Java
One can generate a symmetric key for use with HMAC-SHA256 with:
String algorithm = "HmacSHA256";
KeyGenerator keyGenerator = KeyGenerator.getInstance(algorithm);
keyGenerator.ini...
automatictester
Votes: 0
Answers: 1