rijndael Questions
2
Solved
At first i thought it was the padding since mcrypt uses zero padding but i changed the php to use PKCS7 and get the same exact results
Can anyone help? I think it has something to do with the padd...
Uneventful asked 12/9, 2011 at 11:22
2
Solved
UPDATED
I have made the changes to the C# code so it uses a block size of 256. but now the hello world looks like this http://pastebin.com/5sXhMV11 and I cant figure out what I should use with rtr...
Vittle asked 7/8, 2010 at 20:34
1
Solved
Fixed it.
$data = base64_decode(str_replace(' ', '+', $_GET['data']));
for whatever reason, Php was converting the +'s from the GET variablesinto spaces
--
I am trying to decrypt a string that...
2
Solved
I have this bit of PHP that I'd like to do the equivalent of in ColdFusion.
function & _encryptMessage( $message ) {
$td = mcrypt_module_open( MCRYPT_RIJNDAEL_256, '', MCRYPT_MODE_CBC, '');...
Placentation asked 27/4, 2011 at 17:27
4
Solved
We have a requirement to do some Rijndael development in Java.
Any recommendations for articles, libraries etc. that would help us?
Any pointers to keystore maintenance and how store the keys se...
Wilds asked 25/2, 2009 at 19:5
2
Solved
I have a project in c#, Windows that uses Rijndael object.
I'm suppoesd to write it in c++,Linux.
I understood that I'm supposed to use openssl/aes, but couldn't figure out how.
What are the inc...
Bespectacled asked 22/12, 2010 at 11:21
5
Solved
I am thinking about making the switch to storing session data in encrypted cookies rather than somewhere on my server. While this will result in more bandwidth used for each request - it will save ...
Dhar asked 30/10, 2010 at 19:42
3
Solved
for these 2 libraries,
Delphi Encryption Compendium v 5.2
TurboPower Lockbox v 2.07
I tested their Rijndael DCB/CBC algorithm with "AES Known Answer Test (KAT) Vectors" obtained at NIST website...
Kelsiekelso asked 6/10, 2010 at 12:21
4
I have an encryption/decryption algorithm written in C# - I need to be able to produce the same encryption in PHP so I can send the encrypted text over HTTP to be decrypted on the C# side.
Here is ...
Digestive asked 17/8, 2010 at 17:59
3
Solved
I want the code of Rijndael algorithm to encrypt any given text to store it in a database, I also want to know how to reverse the encryption method, ie: decrypt the encrypted text to use it.
Dives asked 2/8, 2010 at 7:25
3
Solved
Only part of the string is getting decrypted, i think it has to do with my encoding.
Here is what happens:
string s = "The brown fox jumped over the green frog";
string k = "urieurut";
string ...
Rebba asked 4/6, 2010 at 15:19
3
Solved
I am trying to share encryption between Action Script and C#
My task is to decrypt the following message within C#
f1ca22a365ba54c005c3eb599d84b19c354d26dcf475ab4be775b991ac97884791017b12471000de...
Chinchilla asked 19/4, 2010 at 16:48
2
Solved
I saw some code like
string password = "11111111";
byte[] salt = Encoding.ASCII.GetBytes("22222222");
Rfc2898DeriveBytes key = new Rfc2898DeriveBytes(password, salt);
RijndaelAlg.Key = key.GetByte...
Sonar asked 20/12, 2009 at 22:6
3
Solved
Is there any way to calculate the largest outcome from an Rijndael encryption with a fixed array length?
Encryption method: RijndaelManaged
Padding: PKCS7
CipherMode: CBC
BlockSize 128
KeySize...
Bobker asked 17/6, 2009 at 12:55
© 2022 - 2024 — McMap. All rights reserved.