如何在android中使用md5和密钥对密码进行加密

发布于 2024-10-27 20:05:28 字数 1060 浏览 0 评论 0原文

我目前正在使用以下代码来加密密码,但它没有使用密钥。

package com.MD5Check;

import java.math.BigInteger;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

import android.app.Activity;
import android.os.Bundle;

public class MD5Check extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        getSignature();
    }

    public void getSignature()
    {
        try {
               String s = "aditi9970";
               MessageDigest md5 = MessageDigest.getInstance("MD5");
               md5.update(s.getBytes(),0,s.length());
               String signature = new BigInteger(1,md5.digest()).toString(16);
               System.out.println("Signature: "+signature);

            } catch (final NoSuchAlgorithmException e) {
               e.printStackTrace();
            }
    }
} 

我想在 android 中使用 md5 和密钥对密码进行哈希处理。

有人能建议正确的方法吗?

I am currently using the following code to encrypt password but it is without using key.

package com.MD5Check;

import java.math.BigInteger;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

import android.app.Activity;
import android.os.Bundle;

public class MD5Check extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        getSignature();
    }

    public void getSignature()
    {
        try {
               String s = "aditi9970";
               MessageDigest md5 = MessageDigest.getInstance("MD5");
               md5.update(s.getBytes(),0,s.length());
               String signature = new BigInteger(1,md5.digest()).toString(16);
               System.out.println("Signature: "+signature);

            } catch (final NoSuchAlgorithmException e) {
               e.printStackTrace();
            }
    }
} 

I would like to hash the password using md5 with key in android.

Can anybody suggest the right way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

所有深爱都是秘密 2024-11-03 20:05:28

MD5 是一种哈希算法 - 这意味着该函数只会以一种方式转换数据(从原始数据转换为 md5 哈希值)。我有点不清楚在这种情况下你所说的“关键”是什么意思。如果您希望在散列之前对字符串加盐,那么您可以简单地将原始字符串和盐连接起来。

或者,您可能希望查看替代的 Android 加密技术。我将从这里开始 http://developer.android.com/reference/javax /crypto/package-summary.html

MD5 is a hashing algorithm - meaning that the function will only transform data one way (from the original into an md5 hash). I am a little unclear what you mean by 'key' in these circumstances. If you are looking to salt the string before hashing it then you can simply concatenate your original string and your salt.

Alternatively you may wish to look at alternative android encryption techniques. I would start here http://developer.android.com/reference/javax/crypto/package-summary.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文