Tagged Questions
16
votes
2answers
2k views
Why is using a Non-Random IV with CBC Mode a vulnerability?
I understand the purpose of an IV. Specifically in CBC mode this insures that the first block of of 2 messages encrypted with the same key will never be identical. But why is it a vulnerability if ...
26
votes
2answers
2k views
Is HTTPS the only defense against Session Hijacking in an open network?
So with Firesheep, everyone in a public Wi-Fi now has a one-click session hijack tool.
The way it works - to my understanding - is that it simply captures all traffic and grabs the session cookie (so ...
3
votes
4answers
569 views
Symmetric integer to integer encryption
I need some pointers or a practical example on how to encrypt an int to another int, and a secret key would be required to decrypt the value.
Something like:
encrypt(1, "secret key") == 67123571122
...
2
votes
9answers
552 views
Crypto, hashes and password questions, total noob?
I've read several stackoverflow posts about this topic, particularly this one:
http://stackoverflow.com/questions/401656/secure-hash-and-salt-for-php-passwords
but I still have a few questions, I ...
7
votes
3answers
482 views
Secret vs. Non-secret Initialization Vector
Today I was doing some leisurely reading and stumbled upon Section 5.8 (on page 45) of Recommendation for Pair-Wise Key Establishment Schemes Using Discrete Logarithm Cryptography (Revised) (NIST ...
16
votes
9answers
3k views
Login without HTTPS, how to secure?
For a webapplication, when HTTPS is not available as a security measure, is it possible to still make the login somewhat secure? E.g.:
Tokenize logins, to make repeat attacks difficult?
Somehow ...
15
votes
19answers
2k views
What techniques do you use when writing your own cryptography methods?
For years, maybe 10, I've been fascinated with cryptography. I read a book about XOR bit-based encryption, and have been hooked ever since thing.
I guess it's more fair to say that I'm fascinated by ...
11
votes
2answers
541 views
what is best possible way of salting and storing salt?
Hi guys I have read about password salting, but this might sound a little odd. But how do I store and secure the salt. For example in a multi tire architecture say I use the client machine’s GUID to ...
12
votes
14answers
1k views
Is putting data in cookies secure?
I am using asp.net mvc 2.0 and I am wondering how secure is it to put information in a cookie?
Like I put in my cookie a forms authentication ticket that is encrypted so can I put information that ...
3
votes
8answers
538 views
How could one design a secure and “self-destructing” email?
As most of you know, email is very insecure. Even with a SSL-secured connection between the client and the server that sends an email, the message itself will be in plaintext while it hops around ...
7
votes
1answer
1k views
What is the difference between a PKCS12 keystore and a PKCS11 keystore?
I'm interested in Java-NSS libraries, and I'm reading the Sun's P11 Guide.
I am confused on the following:
What is the difference between using a PKCS12 keystore and a PKCS11 keystore?
A keystore is ...
1
vote
1answer
127 views
Are there any serious problems with this technique for generating symmetric keys?
I'm using a technique borrowed out of a book by Bruce Schneier and Niels Ferguson called Practical Cryptography. Basically, it boils down to this:
Bob does this:
pubk_A = Alice's public key
...
9
votes
4answers
1k views
What's the best way to store sensitive data in MySQL?
I'm managing the MySQL database from PHP scripts.
the communication between server and client is secured via SSL.
I store user account data which is sensitive.
Is there a way to encrypt this data ...
20
votes
6answers
965 views
What is the best nuclear missile crypto system?
You are on a submarine and there is an encrypted message that you want to read. Two people must use their keys at the same time in order to obtain the plain text. What is best cryptographic primitive ...
7
votes
4answers
611 views
After login, should all pages be https?
This will be a bit difficult to explain but I will try my best. There is a website that has the login form on every page with username/password fields. These pages are not using SSL. After the user ...
6
votes
4answers
436 views
Mitigating the 'firesheep' attack in the application layer?
What methodologies do people recommend for mitigating the 'Firesheep' method for website applications?
We have thought about this and from a usability perspective, other than encrypting all traffic ...
7
votes
6answers
1k views
Can HTTPS connections be hijacked with a man-in-the-middle attack?
I'm using gmail from work, but I need to enter a password for a proxy when accesing the first web page. The password is asked from inside the browser. I receive a certificate from the proxy which I ...
5
votes
12answers
3k views
Is there a best .NET algorithm for credit card encryption?
The .NET System.Security.Cryptography namespace has a rather bewildering collection of algorithms that I could use for encryption of credit card details. Which is the best?
It clearly needs to be ...
2
votes
2answers
336 views
Can you 'convert' ciphertext encrypted in CBC mode to ECB mode with known IV?
In CBC mode, C2 = Ek(C1 ⊕ P2)
C2 = 2nd block of ciphertext
P2 = 2nd block of plaintext
Ek = encryption function
If IV is known (let's say it's set to 0), is there anyway to find the ciphertext ...
7
votes
3answers
543 views
Does encryption guarantee integrity?
To build a secure system can we assume my question before starting programming.
Both in symmetric and public-key
encryption, is my question
well-proofed ?
If no, what are the
vulnerabilities, can ...
5
votes
3answers
778 views
Encryption: Use of initialization vector vs key?
I am using PHP's mcrypt library and the AES-256 (rijndael) algorithm, which requires both a key + initialization vector to run.
My logical brainside isn't really going along with this. Isn't just ...
4
votes
4answers
134 views
How long should a salt be to make it infeasible to attempt dictionary attacks?
I'm designing an authentication system that works like the following:
User enters password
Salt is generated.
Password is hashed with whirlpool
Whirlpool hashed password concatenated with the plain ...
4
votes
4answers
525 views
Can you spot a vulnerability in my authentication protocol?
Some time ago we needed a solution for Single Sign On authentication between multiple web services. At least at that time we considered OpenID protocol too complicated and we were not convinced about ...
4
votes
4answers
3k views
Sign data with MD5WithRSA from .Pem/.Pkcs8 keyfile in C#
I've got the following code sample in Java, and I need to re-enact it in C#:
PKCS8EncodedKeySpec privKeySpec = new PKCS8EncodedKeySpec(pkcs8PrivateKey);
KeyFactory keyFactory = ...
4
votes
5answers
255 views
establishing strong web security
I have seen many sites who claim to have bank grade security encryption. if their web sites have been built with php what other forms of security can exist aside from using mysql_real_escape_string ...
4
votes
5answers
919 views
AES Encryption library
Is there a library or something that will allow me to simply call a function that will AES encrypt a byte array?
I don't want to deal with multiple update blocks/transformFinal/etc, because there is ...
2
votes
3answers
325 views
Sending IV along with cipher text, safe?
There have been many questions with regard to IV generation, encryption and sharing the IV between the sender and receiver, but I want to make an explicit post regarding the best way to send the IV ...
1
vote
2answers
123 views
encrypt data with untrusted certificate on ios
I'm developing an app in iPhone where I connect to a webService. To send the password of the user I want to encrypt it. To do that I have created a pair of public/private Keys, the private key is on ...
4
votes
4answers
186 views
Is this kind of encryption “safe”?
I must first say I have never studied cryptography, and everything I know on this topic is just basic notions.
We were looking at a fast and easy way to encrypt some data (to be stored into a ...
3
votes
4answers
2k views
How would I encrypt string data in SQL server 2008 while keeping the ability to query over it?
I have a database that will be hosted by a third party. I need to encrypt strings in certain columns, but I do not want to loose the ability to query over the encrypted columns.
I have limited ...
3
votes
4answers
3k views
Strength of RSA Encrypting an AES Key
I'm currently developing a system to transmit data between client and server, and was wondering what the strength of the encryption I planned to use was.
My thought was to have a private/public RSA ...
2
votes
3answers
1k views
How to create a PKI in Java
I want create certificates to be stored on a database and i dont have any idea about how to do it, if exits an API or library help me do it
Thanks
2
votes
3answers
114 views
Finding a cryptographically strong random secret for applications?
While building web applications I'm wondering how long of a secret I need (how many bits) for serving as the key in encryption - and whether I can just mash out a random sequence of characters on my ...
2
votes
4answers
215 views
Encrypted user credentials when they are transmitted
How can we encrypted user credentials when they are transmitted with php? (in login forms)
Thanks
2
votes
1answer
1k views
Is it safe to use PBKDF2 with SHA256 to generate 128-bit AES keys?
I want to use PBKDF2 with some cryptographic hash function to generate 128-bit AES keys. SHA1 is also 128-bit, so I thought of using that with PBKDF2, but it was broken, so I have opted to use SHA256 ...
1
vote
4answers
138 views
User security in the database of my website
Lets say i have a website mysite.com that will store some sensitive personal data (bank related)
On this website i have an oracle database with a USERS tables that will store the logins and passwords ...
1
vote
3answers
576 views
48-bit blowfish
Is there an implementation (Java/C++/Ruby) of a blowfish algorithm that supports 48-bit data blocks? I have an encryption problem where the input and output channels are exactly 48-bits. All ...
1
vote
6answers
2k views
How should I create my DES key? Why is an 7-character string not enough?
I'm having a bit of difficulty getting an understand of key length requirements in cryptography. I'm currently using DES which I believe is 56 bits... now, by converting an 8 character password to a ...
1
vote
3answers
1k views
Cracking a N bit RSA modulo numbers
This is related to my previous post, where my only option was to have a RSA algorithm which seemed relatively weak. Let us assume that I want to encode a 35 bit number (From 0 upto 34359738367) with a ...