3
votes
10answers
173 views
Can two different strings generate the same MD5 hash code?
For each of our binary assets we generate a MD5 hash. This is used to check whether a certain binary asset is already in our application. But is it possible that two different bina …
2
votes
3answers
94 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 …
6
votes
7answers
177 views
Is forcing complex passwords “more important” than salting?
I've spent the past 2 hours reading up on salting passwords, making sure that I understood the idea. I was hoping some of you could share your knowledge on my conclusions.
Say th …
1
vote
9answers
164 views
Is there any point encrypting passwords with more than md5?
I am not a security expert... so I might be very wrong here.
Am I right in that the only advantage to using a stronger algorithm is to slow down password cracking?
In which case …
4
votes
2answers
74 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 …
0
votes
1answer
34 views
Load RSA keys from files
Hello,
I used openSSL command to create 2 files: 1 for RSA public key & 1 for RSA private key. How do I recover RSA keys using C?
Specifically, I have these functions:
RSA_p …
0
votes
1answer
11 views
Protecting RSACryptoServiceProvider private key with password or otherwise
I want to encrypt some server data using .NET's RSACryptoServiceProvider and decrypt it when someone enters a key/password via a web page. What are my options for protecting, or id …
0
votes
2answers
45 views
+100
Window CryptoAPI: Can I choose the public exponent when generating an RSA key pair?
Using the Windows CryptoAPI, is there any way to specify which public exponent to use when generating a new key-pair (ie. 3 instead of 65537)?
As a bonus question: how would I acc …
0
votes
1answer
47 views
Laziness and the Crypto library in Haskell
I have a modified snippet from an example in the Crypto library:
encrypt :: AES.AESKey k => k -> [Word8] -> String
encrypt k = listToOctets . (map (AES.encrypt k)) . list …
2
votes
6answers
90 views
What is the probability that the first 4 bytes of MD5 hash computed from file contents will collide?
This is a combinatorics question with some theory in hashing algorithms required.
Let's say the input can be any random sequence of bytes 30 kB to 5 MB of size (I guess that makes …
0
votes
0answers
63 views
Does re-encryption tampers the original encryption? [closed]
I usually use AxCrypt to encrypt my documents. For some documents that I want to store online, being a paranoid, I re-encrypt using PGP.
I want to know whether re-encryption does …
0
votes
1answer
57 views
RSA cryptosystem
Hi i am trying to set up an RSA cryptosystem i have all the values except d selected prime numbers: p=1889, q=2003 n=3783667 phi=3779776 e= 61
i got stuck finding d could anyone h …
2
votes
5answers
127 views
How to store sensitive data (e.g. passwords, API keys) in Cocoa app?
I need to provide some passwords, API keys and similar sensitive data in my code. What are best practices in that regard? Hard-coded? SQlite? Some cryptographic framework?
0
votes
3answers
111 views
PHP MD5 implementation
I'm currently attempting to code one for part of a college project - binary/hex handling and cryptographic functions are well regarded in the mark scheme, so I thought I'd kill two …
0
votes
0answers
48 views
Transposition or Substitution Ciphertext? (monoalphabetic or polyalphabetic?)
Hi,
We have a ciphertext with IC=0.0685. We want to find out the class descriptor (mono-alphabetical/poly-alphabetical/transposition).
I have applied the 2 probabilistic tests to t …
