all are in classes, tried and caught ... when decrypting the the sent string with private key ..i get the error "javax.crypto.BadPaddingException: Data must start with zero"
I have tried this in a seprate file from my work and all results are fine....
below is the test script that works fine.... any ideas ? ( i know not all imports are used in test code )
Completely irrelevant as long as pricing is garbage.
With OneDrive I get storage for about $18 / TB for a year.
With Proton it's $96.
For the record, Google One is around $48, Dropbox $69, iCloud $60.
In other words, Proton is the worst value BY FAR.
Not to mention with OneDrive I get full desktop and web office suites for 6 people.
Hello,
There's a nice repo on GitHub at github.com/ItzLevvie/MicrosoftTeams-msinternal/ that lets you pull various versions of Microsoft Teams. You might want to try some of those to see if they work better.
As always, use caution when trusting random scripts on the internet.
Regards,
Aryeh Goretsky
Question
Original Poster
i am having issues with decrypting sent messages .... here is the encryption code from person A ...
and here is the [b]decryption [/b]code from person B
byte[] src = inputLine.getBytes();
System.out.println(src);
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.DECRYPT_MODE, jim);
byte[] cipherData = cipher.doFinal(src);
System.out.println("Decrypted: " + new String(cipherData));
[/CODE]
all are in classes, tried and caught ... when decrypting the the sent string with private key ..i get the error "javax.crypto.BadPaddingException: Data must start with zero"
I have tried this in a seprate file from my work and all results are fine....
below is the test script that works fine.... any ideas ? ( i know not all imports are used in test code )
import java.awt.*;
import java.awt.RenderingHints.Key;
import java.net.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.io.*;
import javax.crypto.*;
import javax.crypto.spec.*;
import java.security.InvalidKeyException;
import java.security.KeyFactory;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.NoSuchAlgorithmException;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.spec.*;
import java.util.UUID;
public class test
{
public static void main(String arg[]) {
KeyPairGenerator kpg;
try {
kpg = KeyPairGenerator.getInstance("RSA");
kpg.initialize(2048);
KeyPair kp = kpg.genKeyPair();
PublicKey publicKey = kp.getPublic();
PrivateKey privateKey = kp.getPrivate();
KeyFactory fact = KeyFactory.getInstance("RSA");
RSAPublicKeySpec pub = fact.getKeySpec(kp.getPublic(),
RSAPublicKeySpec.class);
RSAPrivateKeySpec priv = fact.getKeySpec(kp.getPrivate(),
RSAPrivateKeySpec.class);
String bob = "hi";
byte[] src = bob.getBytes();
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.ENCRYPT_MODE, publicKey);
byte[] cipherData = cipher.doFinal(src);
System.out.println(new String(cipherData));
Cipher cipher1 = Cipher.getInstance("RSA");
cipher1.init(Cipher.DECRYPT_MODE, privateKey);
byte[] cipherData1 = cipher1.doFinal(cipherData);
System.out.println(new String(cipherData1));
} catch (NoSuchAlgorithmException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InvalidKeySpecException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (NoSuchPaddingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InvalidKeyException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalBlockSizeException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (BadPaddingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
[/CODE]
Link to comment
https://www.neowin.net/forum/topic/1122108-latest-problem-with-rsa-encryption/Share on other sites
1 answer to this question
Recommended Posts