Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
6answers
2k views

Encrypting and Decrypting String using a Java equilavent of the C# CryptoStream

I am looking at developing an application in Java for a mobile platform operating system. I have developed an application in C# WPF for the Windows Environment. I am using a cryptostream in order to ...
2
votes
1answer
107 views

.NET CryptoStream reads past end of ciphertext in Dispose() and blows up

I'm puzzled by what appears to be a quirk of the .NET CryptoStream class: its Dispose() method reads past the end of the ciphertext looking for padding that it shouldn't, and throws a ...
2
votes
2answers
623 views

Seekable alternative to .NET's CryptoStream?

Does anybody know a seekable alternative to .NET's CryptoStream? It is OK if the alternative supports Seek only in "read" mode or if it is limited to e.g. AES256.
1
vote
2answers
119 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, ...
1
vote
1answer
658 views

C# CryptoStream result not as expected

I'm trying to understand why the following code results in the encrypted byte array being 16 bytes if plainText is 8 bytes in length. I expected the result to also be 8 bytes in length? private ...
0
votes
1answer
33 views

Exception thrown when CryptoStream instance closed

I have a DecryptString function that uses the RijndaelManaged Cipher. It works 99.999% of the time but very occationally it throws an "IndexOutOfRangeException" exception with the message of "Index ...
0
votes
1answer
24 views

Erron when using CryptoStream [closed]

The following code Stream manifestResourceStream = base.GetType().Assembly.GetManifestResourceStream("file.Assembly"); CryptoStream stream5 = new CryptoStream(manifestResourceStream, ...
0
votes
3answers
228 views

simple encrypting / decrypting in VB.Net

I'm trying to figure out how to encrypt / decrypt a string in VB.Net. I followed the example given here and wrote the following code (below). There's a text box, an "encrypt" button, and a "decrypt" ...
0
votes
1answer
148 views

CryptoStream.FlushFinalBlock throwing input data is not a complete block exception

I use the following two methods to encrypt and decrypt strings: 'Encrypts string. Returns encrypted byte array. Public Function Encrypt(ByVal str As String) As Byte() Dim inputInBytes() As Byte = ...
0
votes
0answers
86 views

DESCryptoServiceProvider in objective c

If any one can tell me is it possible to implement DESCryptoServiceProvider, MemoryStream , CryptoStream as we do it c#? I guess there no APIs. but can we implement it?
0
votes
1answer
497 views

C# “Bad Data” exception when decrypting encrypted file

Hey I'm very new to encryption and decryption, or even the c# language to be honest. Basically, I have a tcp chat server that "saves" logs and encrypts the text file. This is how I encrypt (based from ...
0
votes
1answer
145 views

cryptStream.FlushFinalBlock() kills my program on 64bit OS

I have a program that is deployed on multiple Windows7 32bit machines. It runs flawlessly on all of them. I just installed it on a Windows7 64bit machine and it's now crashing immediately after ...
0
votes
0answers
106 views

CryptoStream.Close() fails when the disk is full

I am using a CryptoStream for writing encrypted audio data to the file (underlying stream is FileStream). When I try to call CryptoStream.Close() over the full disk, I get an exception. I know that ...