Tagged Questions
1
vote
3answers
471 views
aes256 results differ in C# (Windows) and C++ (Ubuntu) implementation
Here are the codes for aes256 with cbc and pkcs7 padding (and a password) encryption on C (Windows and C++ (Ubuntu using libcrypto++). The encryption result is not the same. Why?
C#:
using System;
...
1
vote
2answers
845 views
Can I use RSACryptoServiceProvider public/private keys to interop with Crypto++?
I've created a public/private key using RSACryptoServiceProvider and saved it as XML. I can use this to encrypt/decrypt/sign and verify data in .NET.
I have another application which is intended to ...
0
votes
0answers
66 views
Bouncy Castle, Crypto++, Elliptic Curve Crypto (ECC), failing to decode
We've got a C++ solution using the ECC part of the Crypto++ library but are having to move across to a .NET solution. Due to the minimal documentation for Microsoft's ECC code I;m currently ...