android - 有没有在android中创建Hmac256字符串的函数?

标签 android hmac hmacsha1

在android中有创建Hmac256字符串的函数吗? 我使用 php 作为我的 android 应用程序的后端,在 php 中我们可以使用 php 函数 hash_hmac () [ ref 创建 hmac256 字符串] Android有没有这样的功能

请帮帮我。

最佳答案

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

这种方法不需要任何外部依赖。

关于android - 有没有在android中创建Hmac256字符串的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36004761/

相关文章:

java - 选择双倍 BottomNavigation 项目时应用程序崩溃

java - 如何用 Java (Android) 编写这个 Objective-C Hmac 签名函数?

PHP 生成 HMAC-SHA1 签名

android - 使用 OkHttp 时是否可以限制带宽?

Android DialogFragment : can I re-use, 还是我必须新建一个?

android - 如何将 ViewPager 放入 Fragment 中?

encryption - 如何解密Dart中的加密值?

c - 使用 OpenSSL 的 HMAC 时出现访问冲突

ruby - Rails 3 - 使用 HMAC-SHA256 签名响应

rust - Rust 中的 HMAC-SHA1