Tagged Questions

0
votes
2answers
26 views

client server AES encryption

I am developing a client server application in which data is transferred between two clients through the server. The data should be encrypted and I thought of using AES. My though …
0
votes
3answers
29 views

how can the decryption happen at a later stage with this AES program

i am really not able to figure this out myself so please help me out. this is a program to encrypt contents of an existing file keeper.txt using 128bit AES putting the encrypted te …
0
votes
2answers
38 views

please advice whether about our case of using encryption

Our client wants to give us a database. The original database has a phone number column. He doesn't want to give us a phone number. Somehow i'm not sure why - it is decided that cl …
0
votes
3answers
70 views

help understanding this comment .

I'm trying to understand this comment from AES implementation code: /** * This program generates a AES key, retrieves its raw bytes, and * then reinstantiates a AES key from the …
0
votes
1answer
26 views

what is this error on open declaration ?

KeyGenerator kgen = KeyGenerator.getInstance("AES"); kgen.init(128); // 192 and 256 bits may not be available in eclipse when i select KeyGenerator and right click open dec …
0
votes
1answer
31 views

AES encryption - password , salt not resolved ?

i get the error " password , salt not resolved ". any suggestions ? package org.temp2.cod1; import java.security.*; import java.security.spec.KeySpec; import javax.crypto.*; impo …
1
vote
2answers
45 views

why should aes key be generated randomly ?

when you want to encrypt something dont you want the key to decrypt to be decided by you and not generator by some random number generator ? i see this code in stackoverflow post. …
2
votes
3answers
96 views

whats happening in the line of code

whats happening in this line of code ? SecretKeyFactory factory = SecretKeyFactory.getInstance("PBKDF2WithHmacSHA1"); i specially dont understand getInstance("PBKDF2WithHmacSHA1 …
1
vote
2answers
27 views

invalid AES key length error

this code give invalid AES key length error. how can i correct it ? ( i want 128 bit key AES encryption ) package org.temp2.cod1; import java.security.*; import javax.crypto.*; i …
2
votes
2answers
96 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 …
1
vote
5answers
408 views

.NET’s SslStream is always negotiating to the least secure cipher I have. How can I change this?

SslStream is supposed to negotiate the cipher type, key length, hash algorithm, etc. with its peer SSL stack. When using it in my code, I find that the negotiation always defaults …
1
vote
2answers
49 views

128 bit key AES encrypting application in java

i need to create an application in java that would convert text strings into codes based on 128bit AES encryption.. ideally i would prefer that i only need to create a gui and the …
0
votes
1answer
24 views

S-Box used in AES 128 bit CFB mode of encryption

Hi Can anybody give me the S-Box used for 128 bit AES CFB mode of encryption. Will this S-Box be same for every 128 -bit AES CFB Implementation. Thanks
0
votes
3answers
397 views

M2Crypto Encrypt/Decrypt using AES256

Can someone provide me code to encrypt / decrypt using m2crypto aes256 CBC using Python
1
vote
1answer
84 views

file size is dramatically increased after pickle

I'm reading in a file and sending the data (once encrypted) to a dictionary, with a hash of the data before and after encryption. I then pickle the dictionary but find the file siz …

1 2 3 4 5 7 next
15 30 50 per page