2
votes
4answers
332 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 …
0
votes
2answers
59 views
Password encryption/decryption between classic asp and ASP.NET
I have 2 websites: one written in classic asp and another written in ASP.NET (1.1 framework). Both applications use a login mechanism to validate user credentials based on a shared …
1
vote
2answers
85 views
ASP.net rijndael decrypt - Length of data to decrypt
A lot of items I've found so far have been a bit vague or ... unspecific so I'm hoping to get an answer.
I've got two little methods - easy ones that look as such...
private …
2
votes
1answer
80 views
Perl & Ruby exchange AES encrypted information
What is the equivalent to Crypt::CBC in Perl for Ruby?
Note: This problem similar to PHP/Perl at stackoverflow:655691.
Perl Version
use Crypt::CBC;
use MIME::Base64::Perl;
my …
1
vote
3answers
52 views
Public Overrides Function GetBytes() As Byte() is obsolete
What does the poet try to say?
Public Overrides Function GetBytes() As Byte() is obsolete: Rfc2898DeriveBytes replaces PasswordDeriveBytes for deriving key material from a passwo …
1
vote
4answers
232 views
Help using Rijndael Algorithm in Delphi 2007. Net
Hi, I'm working in Delphi 2007. Net, where I can find an example of using the Rijndael algorithm.
Bye.
3
votes
4answers
1k views
How to encrypt in vbscript using AES?
I am looking to encrypt some data using Rijndael/AES in vbscript using a specific key and IV value. Are there any good function libraries or COM components that would be good to us …
0
votes
2answers
261 views
Strange Error in .net Application. - RijndaelManaged..
During a recent load test, I've been getting some strange "Index Out of Range Exception"
Stack trace:
at System.Security.Cryptography.RijndaelManagedTransform.DecryptData(By …
0
votes
3answers
1k views
Decrypting RijndaelManaged Encrypted strings with CryptDecrypt
Ok I'm trying to use the Win32 Crypto API in C++ to decrypt a string encrypted in C# (.NET 2) with the RijndaelManaged Class. But I'm having no luck at all i get jibberish or a ba …
2
votes
3answers
848 views
Rijndael / AES from C# to VB6
Hello,
I need to encrypt a byte array in VB6 and decrypt it in C# (NET 2.0). And viceversa (C# to VB6).
In C# I used RijndaelManaged class. In VB6 I used free pieces of from Inte …
0
votes
1answer
672 views
Specified initialization vector (IV) does not match the block size for this algorithm.
I am working on a base encryption method. I am using RijndaelManaged. I got this code from somewhere a long time ago, but can't remember where.
I had my code working before, but s …
3
votes
3answers
152 views
Calculate maximum size for encypted data
Is there any way to calculate the largest outcome from an Rijndael encryption with a fixed array lenght?
Encryption method: RijndaelManaged
Padding: PKCS7
CipherMode: CBC
Block …
0
votes
2answers
191 views
PHP & Silverlight Cryptography Chalenge!
OK, I give up. I have been trying to figure this out for weeks now. I think I will leave it to the crowd-sourcing machine.
Can Somebody Please Make A PHP 5 Equivalent Of Anyone Of …
2
votes
2answers
520 views
When will C# AES algorithm be FIPS compliant?
Right now the only way I can get the RijndaelManaged algorithm to work on a computer with the Local Security Setting for FIPS turned on, is to disable it. It is a government compu …
2
votes
4answers
633 views
Encryption algorithm/library for .NET 2.0 + C++
I need a standard, Microsoft delivered, encryption library that works for both .NET 2.0 and C++. What would you suggest?
We find that AES is only offered in .NET 3.5 (and availabl …
