web-dev-qa-db-ja.com

AndroidでHmac256文字列を作成するための関数はありますか?

Android=にHmac256文字列を作成するための関数はありますか?私はAndroidアプリケーションのバックエンドとしてphpを使用しています。phpでは、 PHP関数hash_hmac()[ ref ] Androidにはこのような関数があります

私を助けてください。

16
Bikesh M

Androidプラットフォームで、ハッシュアルゴリズムHMAC-SHA256を使用してメッセージダイジェストを計算します。

private void generateHashWithHmac256(String message, String key) {
    try {
        final String hashingAlgorithm = "HmacSHA256"; //or "HmacSHA1", "HmacSHA512"

        byte[] bytes = hmac(hashingAlgorithm, key.getBytes(), message.getBytes());

        final String messageDigest = bytesToHex(bytes);

        Log.i(TAG, "message digest: " + messageDigest);

    } catch (Exception e) {
        e.printStackTrace();
    }
}

public static byte[] hmac(String algorithm, byte[] key, byte[] message) throws NoSuchAlgorithmException, InvalidKeyException {
    Mac mac = Mac.getInstance(algorithm);
    mac.init(new SecretKeySpec(key, algorithm));
    return mac.doFinal(message);
}

public static String bytesToHex(byte[] bytes) {
    final char[] hexArray = "0123456789abcdef".toCharArray();
    char[] hexChars = new char[bytes.length * 2];
    for (int j = 0, v; j < bytes.length; j++) {
        v = bytes[j] & 0xFF;
        hexChars[j * 2] = hexArray[v >>> 4];
        hexChars[j * 2 + 1] = hexArray[v & 0x0F];
    }
    return new String(hexChars);
}

このアプローチでは、外部の依存関係は必要ありません。

16
Ryan Amaral

以下のコードを試してください

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")));
}

Hex.encodeHexString()を使用してこのメ​​ソッドを使用するには、以下の依存関係をアプリグラドルに追加します。

compile 'org.Apache.directory.studio:org.Apache.commons.codec:1.8'

これは、php hash_hmac()関数が生成するのと同じように、結果の文字列を16進文字列に変換します。

9
Chirag Chavda