I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 922515df authored by zzz's avatar zzz
Browse files

Crypto: Add X25519 keygen support

parent f1689187
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,6 @@ import java.math.BigInteger; ...@@ -13,7 +13,6 @@ import java.math.BigInteger;
import java.security.GeneralSecurityException; import java.security.GeneralSecurityException;
import java.security.InvalidKeyException; import java.security.InvalidKeyException;
import java.security.KeyFactory; import java.security.KeyFactory;
import java.security.KeyPair;
import java.security.KeyPairGenerator; import java.security.KeyPairGenerator;
import java.security.MessageDigest; import java.security.MessageDigest;
import java.security.ProviderException; import java.security.ProviderException;
...@@ -175,6 +174,40 @@ public final class KeyGenerator { ...@@ -175,6 +174,40 @@ public final class KeyGenerator {
return keys; return keys;
} }
/**
* Supports EncTypes
* @since 0.9.38
*/
public KeyPair generatePKIKeys(EncType type) {
PublicKey pub;
PrivateKey priv;
switch (type) {
case ELGAMAL_2048:
SimpleDataStructure[] keys = generatePKIKeys();
pub = (PublicKey) keys[0];
priv = (PrivateKey) keys[1];
break;
case ECIES_X25519:
byte[] bpriv = new byte[32];
do {
_context.random().nextBytes(bpriv);
// little endian, loop if too small
// worth doing?
} while (bpriv[31] == 0);
byte[] bpub = new byte[32];
Curve25519.eval(bpub, 0, bpriv, null);
pub = new PublicKey(type, bpub);
priv = new PrivateKey(type, bpriv);
break;
default:
throw new IllegalArgumentException("Unsupported algorithm");
}
return new KeyPair(pub, priv);
}
/** /**
* Convert a PrivateKey to its corresponding PublicKey. * Convert a PrivateKey to its corresponding PublicKey.
* As of 0.9.38, supports EncTypes * As of 0.9.38, supports EncTypes
...@@ -254,7 +287,7 @@ public final class KeyGenerator { ...@@ -254,7 +287,7 @@ public final class KeyGenerator {
public SimpleDataStructure[] generateSigningKeys(SigType type) throws GeneralSecurityException { public SimpleDataStructure[] generateSigningKeys(SigType type) throws GeneralSecurityException {
if (type == SigType.DSA_SHA1) if (type == SigType.DSA_SHA1)
return generateSigningKeys(); return generateSigningKeys();
KeyPair kp; java.security.KeyPair kp;
if (type.getBaseAlgorithm() == SigAlgo.EdDSA) { if (type.getBaseAlgorithm() == SigAlgo.EdDSA) {
net.i2p.crypto.eddsa.KeyPairGenerator kpg = new net.i2p.crypto.eddsa.KeyPairGenerator(); net.i2p.crypto.eddsa.KeyPairGenerator kpg = new net.i2p.crypto.eddsa.KeyPairGenerator();
kpg.initialize(type.getParams(), _context.random()); kpg.initialize(type.getParams(), _context.random());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment