.NET Dependability On Crypto Api
May 17, 2009
I am working on Windows server 2008 and using .NET 2.0. I am successfully able to encrypt data with in a file using .NET namespace system.security.cryptography. My question is is there any dependability between .NET and crypto api? To be precise, does system.security.cryptogrpahy use crypto api functions to implement encryption?
View 1 Replies
Apr 30, 2009
If the input is alphabets such as any string, it works ok but once the input is in numeric such as "177307" the error attached will be prompted out during the decryption process. I've checked that the decryption value for 177307 is "dw==". I suspected that this function does not support numerical values. Is there anyway to fix this problem? Below are the codes and attached is the error
Imports System
Imports System.Security.Cryptography
Imports System.IO
[code].....
View 1 Replies
Nov 22, 2011
I have a problem with the cryptostream, if i write the stream to a memorystream the memory that the stream used is still alocated and i have no way of unalocating it.what am i missingdoing wrong? im using-using on the streams,readers and crypto stuffs so the framework should shut them all down right? i tryed calling .close and .dispose but nothing ,in fact i moved it all over I have provided the sub that im using for the encrytion im in .net 4.5 so there is a lil async stuff but i know thats not the problem coz i moved this code out of my main app(.net 4) for testing to see if i could fix the problem.[code...]
View 12 Replies