Tagged Questions

0
votes
1answer
31 views

.Net AES Encryption - Universally Accepted Pad Setting

I have a .Net web service that processes AES encrypted data. The consumers of my service agree on a key/IV pair with me and that way we can pass data securely. I have a consumer …
0
votes
1answer
34 views

how to generate s-box in aes in java.

Is there any formula to generate it. Or shud I go with Multiplicative Inverse (Extended Euler Algorithm) and add a constant ??...I Strongly believe that ther will be a much easier …
1
vote
3answers
428 views

decrypting pdf protected by aes-256bit using the right password

Is there any way to decrypting a pdf protected by an aes-256 bit key? I have the correct password and I need a command-line tool (or library - perhaps in python :P ) for decryptin …
0
votes
3answers
297 views

How to implement AES-512 algorithm?

Is there javascript avaialable which implements AES-512 algorythm(i.e Encyption,Decryption)? I found most of the javascripts implmented AES-128,AES-192,AES-256.
5
votes
3answers
2k views

What (pure) Python library to use for AES 256 encryption?

I am looking for a (preferably pure) python library to do AES 256 encription and decryption. This library should support the CBC cipher mode and use PKCS7 padding according to the …
2
votes
2answers
500 views

Encrypt in Java and Decrypt in C# with Rijndael

Using the Rijndael algorithm is it possible to encrypt a config file (or section(s) in a config file) and then decrypt that file in Java? Assumptions can be made such as: Pass in …
3
votes
3answers
590 views

How do I keep a mySQL database secure?

I'm going to be implementing a PHP/mySQL setup to store credit card information. It seems like AES_ENCRYPT/AES_DECRYPT is the way to go, but I'm still confused on one point: how do …