1
vote
2answers
36 views
Two CryptoStreams associated with one file in C#
I would like to create a file "myFile" that encrypts the first part using a certain key, and the last part using a certain key. So far I have something like this:
cs1 = new CryptoStream(myFile, …
4
votes
7answers
109 views
What encryption scheme meets requirement of decimal plaintext & ciphertext and preserves length?
Hi,
I need an encryption scheme where the plaintext and ciphertext are composed entirely of decimal digits.
In addition, the plaintext and ciphertext must be the same length.
Also the underlying …
2
votes
3answers
80 views
Triple DES interoperability between .Net and iPhone?
I need to encrypt a string on the iPhone and send it to a .Net for decryption using Triple DES. I am able to encrypt/decrypt on the iPhone and with .Net, but I get different results in both platforms.
…
0
votes
1answer
21 views
PKI verification across Java and Python
I am trying to implement a PKI verification scheme, where a message string is signed with a private key on server, the signature is stored on the client along with the message string. The client then …
0
votes
1answer
27 views
How can I use a key generated with sn.exe to sign a string in php?
This is another question in the line of getting C# and PHP to exchange signed pieces of data. In my scenario, I have a signed C# assembly on the client side with a public key. I also have a PHP page …
0
votes
2answers
59 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
2answers
43 views
Cryptographic hash (sha1 or md5) of data given as a string in Mathematica
The sha1 hash of "abc" is
a9993e364706816aba3e25717850c26c9cd0d89d
The only way to get Mathematica to tell you that with its Hash function is
Hash[abc, "SHA"] // IntegerString[#, 16]&
…
0
votes
1answer
30 views
ASP.NET Rijndael Decryption Error: Length of the data to decrypt is invalid.
OK, so having just got the key to be accepted and have an encrypted string out which is 44 char long, I now am unable to decrypt (aarrgghh):
Length of the data to decrypt is invalid.
Having looked …
0
votes
1answer
32 views
ASP.NET Rijndael Encryption Error - Specified key is not a valid size for this algorithm.
I can't seem to get past this problem, I've created what I assume to be a 256-bit key using the random generator at GRC and combined that with my IV. I keep getting the error below:
Specified key is …
0
votes
4answers
95 views
how to “mix” two numbers into one hex-string
How to generate a code from two numbers, that when you know this code and one of the numbers you can descramble the second number?
For example you have two numbers: 983 and 2303 and you "mix" it into …
-3
votes
1answer
231 views
What is this string? [closed]
4b17a190bce4ea32236b98dd - I have found something like this. I see that it is too short (24 charsets) for md2, md3 or md5. What can it be? It is possible that it can be descramble by using 29711223 or …
0
votes
2answers
25 views
Debugging Signature Verification failure
Using Java 1.4.2 with unlimited jurisdiction policy files installed.
I have a class that has been successfully signing and verifying. However, now I've changed the keys and suddenly verification is …
1
vote
3answers
83 views
Storing a SHA512 Password Hash in Database
In my ASP.NET web app I'm hashing my user passwords with SHA512.
Despite much SO'ing and Googling I'm unclear how I should be storing them in the database (SQL2005) - the code below shows the basics …
0
votes
4answers
71 views
How to sign an XML file with a RSA key in .NET?
I am trying to sign an XML file in C# .NET 3.5 with a private RSA Key generated by OpenSSL.
Here is how I proceeded: I converted the RSA key from PEM format to XML format using the chilkat framework …
0
votes
2answers
82 views
Simple caesar cipher in java
Hey I'm making a simple caesar cipher in Java using the formula [x-> (x+shift-1) mod 127 + 1] I want to have my encrypted text to have the ASCII characters except the control characters(i.e from …
