Tagged Questions
5
votes
4answers
307 views
Securely erasing a file using simple methods? [closed]
Possible Duplicate:
C# - Deleting a file permanently
Hello,
I am using C# .NET Framework 2.0. I have a question relating to file shredding.
My target operating systems are Windows 7, ...
5
votes
3answers
459 views
SHA512 within Silverlight is not available, is there a managed library available?
SHA512Managed is missing in Silverlight (for Windows Phone 7 CTP SDK), only upto SHA256 is available for use. Does anyone know a .NET class that I could use that offers a self-contained C# or VB.net ...
3
votes
2answers
409 views
Iterate SHA512 to make it more secure?
I currently use SHA512 with per user random salt to hash user passwords and store them in a database. I thought this was pretty secure until I read this article about the use of cheap GPU's to brute ...
2
votes
1answer
316 views
Why do these two files hash to the same value when I use MemoryStream?
I'm writing a c# routine that creates hashes from jpg files. If I pass in a byte array to my SHA512 object then I get the expected behavior, however, if I pass in a memory stream the two files always ...
2
votes
2answers
419 views
How can I reproduce a SHA512 hash in C# that fits the PHP SHA512?
The question is pretty much self-explanatory. I Googled many sites, many methods, tried many encodings, but I can't get it to match.
I'm trying to make the string "asdasd" match. ...
0
votes
2answers
67 views
Is it possible to have SHA-512 collisions using this hash creation strategy?
Assuming that I am using this code to generate hashes:
static void Main(string[] args) {
string id = Guid.Parse("8681941A-76C2-4120-BC34-F800B5AAB5A5".ToLower()).ToString();
string date = ...
0
votes
1answer
197 views
clarification for crypt SHA-512 algorithm (c#)
EDIT: Sorry I forgot to mention, I'm not using the implemented sha512 crypt because as far as I can tell it doesn't involve a salt value or a specified number of rounds to compute the hash with.
Okay ...
0
votes
1answer
82 views
converting java sha512crypt to c#
I am trying to duplicate the following JAVA code into C# but I don't think I'm doing it right o_o
(The code is taken from ftp://ftp.arlut.utexas.edu/pub/java_hashes/Sha512Crypt.java)
JAVA variables:
...
0
votes
2answers
166 views
Convert C# CUSTOM getSHA512 function into Ruby
I was wondering if someone could help me to get this method converted to ruby, is this possible at all?
public static string getSHA512(string str){
UnicodeEncoding UE = new UnicodeEncoding();
...