fork-5.53.8
Moxie Marlinspike 2014-07-26 13:32:36 -07:00
rodzic 27b5bf54cc
commit 084f27a2e8
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -55,7 +55,7 @@ public class Curve25519 {
}
static byte[] calculateSignature(ECPrivateKey privateKey, byte[] message) {
byte[] random = getRandom(32);
byte[] random = getRandom(64);
return calculateSignature(random, ((DjbECPrivateKey)privateKey).getPrivateKey(), message);
}