- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试比较两个值,hcB 已被散列,然后对值进行求幂,而 hci 正在执行 exp 值的倒数。然后比较。他们应该是平等的,但不是。
public class Hash
{
static MessageDigest sha1;
private static final int unitLength = 160; // SHA-1 has 160-bit output.
public static void main(String[] args)throws Exception
{
String s = new String("hello");
BigInteger b =new BigInteger(s.getBytes()); // Big integer conversion
MessageDigest sha1 = MessageDigest.getInstance("SHA-1");
sha1.reset();
sha1.update(s.getBytes());
byte[] hc = sha1.digest();
BigInteger hcB=new BigInteger(1,hc);
KeyGenerator keyRC=new KeyGenerator();
try {
keyRC.initialize();//generating key
BigInteger HashClValueExp=hcB.modPow(keyRC.RC, keyRC.p);// exponentiate of hashed value
System.out.println("HasheCldExp Value: "+HashClValueExp);
//Inverse RC
BigInteger inv = keyRC.RC.modInverse(keyRC.q);
System.out.println("Inverse RC: " + inv);
// Hash value inverse computation
BigInteger hci = HashClValueExp.modPow(inv, keyRC.p);
System.out.println("hci: " + hci); // prints in hex
System.out.println("hcB: " + hcB);
System.out.println("Compare hci and hcB :" + hci.compareTo(hcB));
} catch (Exception e) {
e.printStackTrace();
}
}
}
最佳答案
基本上要反转 N
中的模幂,您需要计算逆 mod phi(N)
。 (不是 mod N
)。
phi(N)
是 N
中的元素数,其中 gcd(x, N) = 1
(换句话说,它们不共享任何质因数)。 如果您不知道 N
的所有质因数,则很难计算此函数的值,结果是 因式分解 N
也不能有效地完成(据我们所知)。
这实际上是 RSA 加密系统所依赖的安全性。
因此,为了让您的代码正常工作,您需要 key 生成器生成一组非常具体的值(我的示例显示了RSA 加密):
class RSAKey {
private final BigInteger p, q, e; // p and q must be distinct primes
public RSAKey(BigInteger p, BigInteger q, BigInteger e) {
this.p = p; this.q = q; this.e = e;
}
public BigInteger getN() { return p.multiply(q) } // return N
public BigInteger getE() { return e }; // return e
public BigInteger getPhiN() { // return phi(N)
return p.subtract(new BigInteger("1").multiply(q.subtract(new BigInteger("1")); // (p-1) * (q-1)
}
}
您的 key 生成器只需生成两个随机素数 p
和 q
以及一个随机值 e
并将它们传递给上述类.
您为模幂运算和反转编码,然后看起来如下:
RSAKey key = keyGen.generateKey();
/*
* compute the decryption exponent d as:
* d = e^-1 mod phi(N)
*/
BigInteger d = key.getE().modInverse(key.getPhiN());
BigInteger c = m.modPow(e, N); // encrypt message m to ciphertext c
BigInteger m1 = c.modPow(d, N); // decrypt ciphertext c to message m1
System.out.println(m.equals(m1)); // the messages should be equal now
注意:自己实现RSA应该仅用于教育目的!如果您想对其他任何内容使用 RSA 加密, 您应该使用 Java Cipher 类和 Java KeyGenerator!
关于java - 试图比较我的两个哈希值。都是大整数形式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25001500/
我是 C++ 的新手,我在使用这段代码时遇到了问题: string output_date(int day, int month, int year){ string date; if
所以我这样做了 tar cvzf test.zip FP 为了创建目录 FP 的 zip 但是,它会列出 zip 中的目录 FP/ FP/php/ FP/php/pdf/ FP/php/docs/ F
我正在尝试在 Swift、Xcode 7.3(所以是 Swift 2.2)中创建一个通用类,但我似乎无法让它通过编译器: protocol Struct1Protocol { } struct Str
我的测试用例是这样的: class FooTest extends PHPUnit_Framework_TestCase { /** @covers MyClass::bar */ f
我正在尝试将brew install wine作为使electron-builder工作的一步。但是我所能得到的只是以下响应: ==> Installing dependencies for wine
我这样做: string[,] string1 = {{"one", "0"},{"Two", "5"},{"Three","1"}}; int b = 0; for(int i = 0; i <=
我正在尝试使用 SetWindowsHookEx 键盘 Hook Notepad.exe。 如您所见,工作线程正在将其 ASCII 代码(即 wParam)发送到指定的服务器。 UINT WINAPI
我正在尝试将 ListView 实现到我的 Fragment 中,但无论我尝试什么,我都会得到一个 NullPointerException。我检查对象是否为 null 并记录是否为 null,看起来
我尝试在一行中对齐两个 div。使用 float left 属性,一切顺利。但是当我在 div 中使用图像时,它开始产生问题。 所以这是我的示例代码:- Some headi
我目前正在使用此代码来获取图像的灰度图像表示并以 (512, 370, 1) 的格式表示它大批。 img_instance = cv2.imread(df.iloc[i][x_col]) / 255.
总结 我正在创建一个简单的应用程序,它允许用户选择一个包含顶级窗口的进程。用户首先键入 native DLL(而非托管 DLL)的路径。然后用户键入将在 Hook 过程中调用的方法的名称。该方法不得返
我是一名优秀的程序员,十分优秀!