web-dev-qa-db-ja.com

署名計算用のHMAC-SHA256アルゴリズム

HMAC-SHA256アルゴリズムを使用して署名を作成しようとしていますが、これが私のコードです。 US ASCII encodingを使用しています。

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 = "";
for (final byte element : mac_data)
{
    result += Integer.toString((element & 0xff) + 0x100, 16).substring(1);
}
System.out.println("Result:[" + result + "]");

上記のコードから得られる結果は次のとおりです。

f7bc83f430538424b13298e6aa6fb143ef4d59a14946175997479dbc2d1a3cd8

これは、wikiに表示されるものと同じです。

HMAC_SHA256("key", "The quick brown fox jumps over the lazy dog") = 0x f7bc83f430538424b13298e6aa6fb143ef4d59a14946175997479dbc2d1a3cd8

除く0x

すべてを正しく行っているか、コードを改善できる可能性がある場合は、アイデア/コメントを探しています。

55
Rishi

0xは、その後の文字が16進文字列を表していることを示しています。

0x1A == 1Ah == 26 == 1A

したがって、0xは出力の形式を明確にするためのものであり、心配する必要はありません。

36
Louis Ricci

私の解決策は次のとおりです。

public static String encode(String key, String data) throws Exception {
  Mac sha256_HMAC = Mac.getInstance("HmacSHA256");
  SecretKeySpec secret_key = new SecretKeySpec(key.getBytes("UTF-8"), "HmacSHA256");
  sha256_HMAC.init(secret_key);

  return Hex.encodeHexString(sha256_HMAC.doFinal(data.getBytes("UTF-8")));
}

public static void main(String [] args) throws Exception {
  System.out.println(encode("key", "The quick brown fox jumps over the lazy dog"));
}

または、Base64でエンコードされたハッシュを返すことができます。

Base64.encodeBase64String(sha256_HMAC.doFinal(data.getBytes("UTF-8")));

16進数の出力は予想どおりです。

f7bc83f430538424b13298e6aa6fb143ef4d59a14946175997479dbc2d1a3cd8
60
vtlinh

あなたがそこに着いた答えは正しいです。上記のコードの小さなことの1つは、doFinal()を呼び出す前にinit(key)する必要があることです。

    final Charset charSet = Charset.forName("US-ASCII");
    final Mac sha256_HMAC = Mac.getInstance("HmacSHA256");

    final SecretKeySpec secret_key = new javax.crypto.spec.SecretKeySpec(charSet.encode("key").array(), "HmacSHA256");
    try {
        sha256_HMAC.init(secret_key);
    } catch (InvalidKeyException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    ...
13
Michael

Guavaを使用している場合、その最新リリースでは次を使用できます。

 Hashing.hmacSha256()

詳細なドキュメント: https://guava.dev/releases/23.0/api/docs/com/google/common/hash/Hashing.html#hmacSha256-byte:A-

11
satnam

これは私のためにうまく機能しています

依存関係を追加しました

compile 'commons-codec:commons-codec:1.9'

参照: http://mvnrepository.com/artifact/commons-codec/commons-codec/1.9

私の機能

public String encode(String key, String data) {
    try {

        Mac sha256_HMAC = Mac.getInstance("HmacSHA256");
        SecretKeySpec secret_key = new SecretKeySpec(key.getBytes("UTF-8"), "HmacSHA256");
        sha256_HMAC.init(secret_key);

        return new String(Hex.encodeHex(sha256_HMAC.doFinal(data.getBytes("UTF-8"))));

    } catch (NoSuchAlgorithmException e) {
        e.printStackTrace();
    } catch (InvalidKeyException e) {
        e.printStackTrace();
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    }

    return null;
}
7
Bikesh M

これを試して

遅れて申し訳ありませんが、上記のすべての答えを試しましたが、どれも正しい値を与えていません。多くの研究開発を行った後、正確な値を与える簡単な方法を見つけました。

  1. クラスでこのメソッドを宣言します

    private String hmacSha(String KEY, String VALUE, String SHA_TYPE) {
    try {
        SecretKeySpec signingKey = new SecretKeySpec(KEY.getBytes("UTF-8"), SHA_TYPE);
        Mac mac = Mac.getInstance(SHA_TYPE);
        mac.init(signingKey);
        byte[] rawHmac = mac.doFinal(VALUE.getBytes("UTF-8"));
        byte[] hexArray = {(byte)'0', (byte)'1', (byte)'2', (byte)'3', (byte)'4', (byte)'5', (byte)'6', (byte)'7', (byte)'8', (byte)'9', (byte)'a', (byte)'b', (byte)'c', (byte)'d', (byte)'e', (byte)'f'};
        byte[] hexChars = new byte[rawHmac.length * 2];
        for ( int j = 0; j < rawHmac.length; j++ ) {
            int v = rawHmac[j] & 0xFF;
            hexChars[j * 2] = hexArray[v >>> 4];
            hexChars[j * 2 + 1] = hexArray[v & 0x0F];
        }
        return new String(hexChars);
    }
    catch (Exception ex) {
        throw new RuntimeException(ex);
    }
    

    }

  2. このように使用します

    Log.e("TAG", "onCreate: "+hmacSha("key","text","HmacSHA256"));
    

検証

1.Androidスタジオ出力 Android studio output 2.オンラインHMACジェネレーター出力(Visit here Online Genrator) enter image description here

1
Sunil

エンコードされた(HMAC-x)署名を生成するためのJavaの簡単なコード(Java-8とEclipseを使用して試されました)

import Java.io.UnsupportedEncodingException;
import Java.security.InvalidKeyException;
import Java.security.NoSuchAlgorithmException;

import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;

import com.Sun.org.Apache.xml.internal.security.utils.Base64;

/**
 * Encryption class to show how to generate encoded(HMAC-x) signatures.
 * 
 */
public class Encryption {

    public static void main(String args[]) {

        String message = "This is my message.";
        String key = "your_key";
        String algorithm = "HmacMD5";  // OPTIONS= HmacSHA512, HmacSHA256, HmacSHA1, HmacMD5

        try {

            // 1. Get an algorithm instance.
            Mac sha256_hmac = Mac.getInstance(algorithm);

            // 2. Create secret key.
            SecretKeySpec secret_key = new SecretKeySpec(key.getBytes("UTF-8"), algorithm);

            // 3. Assign secret key algorithm.
            sha256_hmac.init(secret_key);

            // 4. Generate Base64 encoded cipher string.
            String hash = Base64.encode(sha256_hmac.doFinal(message.getBytes("UTF-8")));

            // You can use any other encoding format to get hash text in that encoding.
            System.out.println(hash);

            /**
             * Here are the outputs for given algorithms:-
             * 
             * HmacMD5 = hpytHW6XebJ/hNyJeX/A2w==
             * HmacSHA1 = CZbtauhnzKs+UkBmdC1ssoEqdOw=
             * HmacSHA256 =gCZJBUrp45o+Z5REzMwyJrdbRj8Rvfoy33ULZ1bySXM=
             * HmacSHA512 = OAqi5yEbt2lkwDuFlO6/4UU6XmU2JEDuZn6+1pY4xLAq/JJGSNfSy1if499coG1K2Nqz/yyAMKPIx9C91uLj+w==
             */

        } catch (NoSuchAlgorithmException e) {

            e.printStackTrace();

        } catch (UnsupportedEncodingException e) {

            e.printStackTrace();

        } catch (InvalidKeyException e) {

            e.printStackTrace();

        }

    }

}

注:他のアルゴリズムを使用して、HmacMD5HmacSHA1HmacSHA256HmacSHA512署名。

1
Rahul Raina

私の解決策は次のとおりです。

public String HMAC_SHA256(String secret, String message)
{
    String hash="";
    try{
        Mac sha256_HMAC = Mac.getInstance("HmacSHA256");
        SecretKeySpec secret_key = new SecretKeySpec(secret.getBytes(), "HmacSHA256");
        sha256_HMAC.init(secret_key);

        hash = Base64.encodeToString(sha256_HMAC.doFinal(message.getBytes()), Base64.DEFAULT);
    }catch (Exception e)
    {

    }
    return hash.trim();
}
0
Rahim Rahimov

ここでHMAC-SHA256の計算方法を見つけたが、このような例外が発生している場合:

Java.lang.NoSuchMethodError:静的メソッドはありませんencodeHexString([B)Ljava/lang/String;クラスLorg/Apache/commons/codec/binary/Hex内。またはそのスーパークラス(「org.Apache.commons.codec.binary.Hex」の宣言は/system/framework/org.Apache.http.legacy.boot.jarにあります)

次に使用します:

public static String encode(String key, String data) {
    try {
        Mac hmac = Mac.getInstance("HmacSHA256");
        SecretKeySpec secret_key = new SecretKeySpec(key.getBytes("UTF-8"), "HmacSHA256");
        hmac.init(secret_key);
        return new String(Hex.encodeHex(hmac.doFinal(data.getBytes("UTF-8"))));
    } catch (Exception e) {
        throw new RuntimeException(e);
    }
}
0
tomrozb