0
votes
3answers
61 views
md5 encrypt cookiedata with serialized array
Hello,
I was attempting to
encrypt de cookie data with md5, but I can not validate the hash back.
It has got to do, with the fact that cookie_data is a serialized array, because …
3
votes
3answers
46 views
coldfusion decrypt in php
Hello. I'm not english speaker, sorry in advance.
I have a ColdFusion 6.1 application, and now I'm trying to migrate to another enviroment. In the ColdFusion application the passw …
2
votes
2answers
99 views
Decryption type and breaking (AES 128?)
Hi,
My question has 2 parts. The first one is "what possible type of encryption i am on" and the other is, "what is the chance of breaking it" (as soon as the encryption algorithm …
0
votes
2answers
77 views
What decryption method is this?
This function is written in ActionScirpt. What kind of decryption this is? Is there existing function in PHP for this function?
function decrypt(str, key1, key2) {
var v1 = [];
…
1
vote
4answers
247 views
Password encryption/ decryption code in C#.NET.
Hi All
I want simple encryption and decryption of password in C#.NET. how to save the password in encrypted format in database and retrieve as original format by decryption, kindl …
1
vote
2answers
209 views
C# encryption, C++ decryption. Final few bytes failing on decryption.
My apologies for the length of the code I'm about to list.
I need to encrypt the contents of an xml file on the C# end of my code, and decrypt it in C++. I'm using RC2, with RC2C …
1
vote
2answers
54 views
Decryption of file missing ~10 characters from ending.
I've written Encryption/Decryption methods using the RC2CryptoServiceProvider in C# and for some reason, I cannot get my decryptor to decrypt the final few bytes. The file seems t …
2
votes
4answers
335 views
PHP Encryption & VB.net Decryption
I'm trying to do a simple task. Encypt a value in PHP and Decrypt it in my VB.net app.
I figure I'd use tripleDES or Rijdael 128 or 256
I though this should be simple. Can anyon …
1
vote
1answer
58 views
DES Initialization Vector in C#
I am trying to decrypt (using the DES algorithm) data that comes from a third party in C# code. There are plenty of examples here and elsewhere that have helped me out. The problem …
0
votes
3answers
216 views
Rijndael Decryption error - Length of the data to decrypt is invalid
I am able to encrypt a zip file using rijndeal but when i decrypt I get an error that says "Length of the data to decrypt is invalid" Im getting the byte array to decrypt from a fi …
0
votes
1answer
40 views
DES Initialization Vector in C#
I am trying to decrypt (using the DES algorithm) data that comes from a third party in C# code. There are plenty of examples here and elsewhere that have helped me out. The problem …
0
votes
1answer
69 views
Help decrypting in ColdFusion passwords created in .NET
I have a SQL db storing passwords that were encrypted through a .NET application, that I need to decrypt through a ColdFusion app. I just can't seem to get things set upproperly f …
2
votes
2answers
101 views
Fast Lightweight .NET Client Encryption -> Server Decryption
Hi there,
I have a simple client/server setup. The client and the server both have a private key.
What does .NET offer me in the way of
ClientData-> ClientEncrypt with KEY-> Tr …
0
votes
8answers
450 views
How to decrypt md5 or sha1? (is it possible?) [closed]
Possible Duplicate:
Is it possible to decrypt md5 hashes?
Well, first of all, is it possible to decrypt md5 or sha1?
The reason why I need to decrypt is:
I have an appli …
0
votes
1answer
123 views
Wincrypt: Unable to decrypt file which was encrypted in C#. NTE_BAD_DATA at CryptDecrypt
I am trying to decrypt a piece of a file with wincrypt and I cannot seem to make this function decrypt correctly. The bytes are encrypted with the RC2 implementation in C# and I a …
