0
votes
1answer
1k views
Java/JCE: Decrypting “long” message encrypted with RSA
I've got a message contained in an byte[], encrypted with "RSA/ECB/PKCS1Padding". To decrypt it I create a Cipher c and initiate it with
c = Cipher.getInstance("RSA/ECB/PKCS1Paddi …
3
votes
3answers
825 views
How to decrypt an encrypted Apple iTunes iPhone backup?
I've been asked by a number of unfortunate iPhone users to help them restore data from their iTunes backups. This is easy when they are unencrypted, but not when they are encrypted …
0
votes
0answers
57 views
How can I decrypt an SSH session with both public and private keys? [closed]
Is it possible to decrypt an SSH session with the public AND private key used for the session? I have a network capture of the packets, and I have no idea what tools I'd be able to …
0
votes
0answers
9 views
How can I use externally generated keys to encrypt and decrypt the data in iPhone?
I am working on an application, in which I need to encrypt and decrypt the data, with the keys generated by server. I viewed the sample code of Crypto Exercise. In that keys are au …
0
votes
1answer
315 views
Decrypt (only) connection string section in Winforms app.config
Ok, I know this has been asked a thousand times before, but no conclusive solution has been derived...so here is another really silly question!
I have a Winforms 3.5 app and using …
1
vote
2answers
106 views
Encrypt in PHP not working as expected…
Hi,
I have a very silly situation, i am receiving an encrypted string from VB.NET in PHP. I am able to decrypt the key. But when i want to encrypt the result and get the encrtypte …
2
votes
4answers
422 views
Best way to use PHP to encrypt and decrypt?
I plan to store foreign account information for my users on my website, aka rapidshare username and passwords, etc... I want to keep information secure, but i know that if i md5 th …
0
votes
2answers
128 views
Excel password removal
We receive Excel workbook files every day which are password protected with the same password. We know this password. Is there a utility or method to remove password protection o …
1
vote
1answer
178 views
RSA decrypt with Java
I am trying to decrypt a string with RSA. It was encrypted in C# on the iPhone and I have the private key. This seems like a silly problem, but all of the examples I have seen sho …
3
votes
1answer
233 views
BouncyCastle Last Byte Decrypt Problem
I am decrypting an XML file from the file system using Bouncy Castle. I output the decrypted text and get a fatal error SAXParseException on the very last byte of data. Below is my …
0
votes
1answer
1k views
Need an example - decrypting string in Java using Microsoft Crypto API
First and foremost, I am not a Java programmer. I'm looking for an example solution to this problem because the Java developer I have does not have much experience working with en …
0
votes
1answer
101 views
MDE Access decrypt JDBC
I want to perform JDBC SQL queries on a MDE Access file.
I've set up the data source ODBC and everything worked well for a MDE file.
Now, I'm working with a newer version of the M …
1
vote
1answer
142 views
Which codec + encryption method makes it easy for streaming J2ME video playback?
I want to transport video files from a desktop system to my mobile device, but I want the videos to be encrypted so the mobile video files cannot be viewed elsewhere. This means I …
1
vote
3answers
160 views
Encrypt in JSP, Decrypt in PHP
Hi,
I'm trying to implement a single-sign-on link from application written in JAVA, to another web app written in PHP.
I'd like a way to encrypt the username in .JSP and then de …
1
vote
6answers
6k views
Encrypt/Decrypt string in C#
Can someone give me the code to Encrypt and Decrypt a string in C#? I'm trying to do this with TripleDES but that is not a requirement.
