J'essaie d'utiliser une API REST à l'aide de C#. Le créateur de l'API a fourni des exemples de bibliothèques en PHP, Ruby et Java. Je suis bloqué sur une partie de l'API où je dois générer un fichier de type HMAC
.
Voici comment cela se passe dans les bibliothèques d'exemples qu'ils ont fournies.
PHP
hash_hmac('sha1', $signatureString, $secretKey, false);
Ruby
digest = OpenSSL::Digest::Digest.new('sha1')
return OpenSSL::HMAC.hexdigest(digest, secretKey, signatureString)
Java
SecretKeySpec signingKey = new SecretKeySpec(secretKey.getBytes(), HMAC_SHA1_ALGORITHM);
Mac mac = null;
mac = Mac.getInstance(HMAC_SHA1_ALGORITHM);
mac.init(signingKey);
byte[] bytes = mac.doFinal(signatureString.getBytes());
String form = "";
for (int i = 0; i < bytes.length; i++)
{
String str = Integer.toHexString(((int)bytes[i]) & 0xff);
if (str.length() == 1)
{
str = "0" + str;
}
form = form + str;
}
return form;
Voici ma tentative en C#. Il ne fonctionne pas. UPDATE : L'exemple C# ci-dessous fonctionne parfaitement. J'ai découvert que le véritable problème était dû à des différences entre plates-formes concernant les caractères de nouvelle ligne dans mon fichier signatureString
.
var enc = Encoding.ASCII;
HMACSHA1 hmac = new HMACSHA1(enc.GetBytes(secretKey));
hmac.Initialize();
byte[] buffer = enc.GetBytes(signatureString);
return BitConverter.ToString(hmac.ComputeHash(buffer)).Replace("-", "").ToLower();