Skip to content

RSA encryption #261

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 25, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions ciphers/RSA.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
package ciphers;

import java.math.BigInteger;
import java.security.SecureRandom;

/**
* Created by Nguyen Duy Tiep on 23-Oct-17.
*/
public class RSA {
private BigInteger modulus, privateKey, publicKey;

public RSA(int bits) {
generateKeys(bits);
}

public synchronized String encrypt(String message) {
return (new BigInteger(message.getBytes())).modPow(publicKey, modulus).toString();
}

public synchronized BigInteger encrypt(BigInteger message) {
return message.modPow(publicKey, modulus);
}

public synchronized String decrypt(String message) {
return new String((new BigInteger(message)).modPow(privateKey, modulus).toByteArray());
}

public synchronized BigInteger decrypt(BigInteger message) {
return message.modPow(privateKey, modulus);
}

/** Generate a new public and private key set. */
public synchronized void generateKeys(int bits) {
SecureRandom r = new SecureRandom();
BigInteger p = new BigInteger(bits / 2, 100, r);
BigInteger q = new BigInteger(bits / 2, 100, r);
modulus = p.multiply(q);

BigInteger m = (p.subtract(BigInteger.ONE)).multiply(q.subtract(BigInteger.ONE));

publicKey = new BigInteger("3");

while (m.gcd(publicKey).intValue() > 1) {
publicKey = publicKey.add(new BigInteger("2"));
}

privateKey = publicKey.modInverse(m);
}

/** Trivial test program. */
public static void main(String[] args) {
RSA rsa = new RSA(1024);

String text1 = "This is a message";
System.out.println("Plaintext: " + text1);

String ciphertext = rsa.encrypt(text1);
System.out.println("Ciphertext: " + ciphertext);

System.out.println("Plaintext: " + rsa.decrypt(ciphertext));
}
}