Looking for Encryption/Compression .NET Component

  • Thread starter Mitchell Vincent
  • Start date
M

Mitchell Vincent

As the subject suggests, I'm looking for a compression and encryption
component(s) for use with VB.NET. I would rather then be all managed code
but will use ActiveX/COM if I have to.. Price is important, the budget is
under $400 for both for a single developer license..

Any and all suggestions are welcome! Thanks!
 
H

Herfried K. Wagner [MVP]

Vincent,

Mitchell Vincent said:
As the subject suggests, I'm looking for a compression and encryption
component(s) for use with VB.NET.

Encryption:

See 'System.Cryptography' namespace.

Compression:

The Zip, GZip, BZip2 and Tar Implementation For .NET
<URL:http://www.icsharpcode.net/OpenSource/SharpZipLib/>

The VB.NET Resource Kit contains zipping functionality too:

The Visual Basic .NET Resource Kit
<URL:http://msdn.microsoft.com/vbasic/vbrkit/>

It contains ComponentOne Zip for .NET:

ComponentOne Zip™ for .NET
<URL:http://www.componentone.com/product...3569&SubCategoryTypeID=0&TabMapID=57&TabID=70>

Using J#'s zip functionality:

Using the Zip Classes in the J# Class Libraries to Compress Files and Data
with C#
<URL:http://msdn.microsoft.com/msdnmag/issues/03/06/zipcompression/>
 
N

Nikolay Petrov

About encryption - do it yourself. it's easy in .NET
about compression - google. there are couple of FREE compression
components, some of them managed.
for the payed ones, i've seen comersials of at least 50 managed and
countless unmanaged, just remove the word FREE from your search ;-)

could also add "-trial" to yout free search. this will block "free
trial" results ;-)
 
G

Guest

There is a free piece of compression code on the 'Source Forge' Website
written in .NET (C# I think).

What Mr MVP said about the Component One stuff is an excellent idea!!
Download the VB.NET Resource kit, register it & then you will get a free
serial number to register all the component one objects. Make sure you keep
this serial number safe, as you won't be able to get another serial number
with the same e-mail address.

Another thing about the component one objects is that they are old (hence
they are free) & that was told to me by Tech Support at component one.

-------------------------------------------------------------------------

Mr MVP,

You said a few days ago that you never had a C# - VB.NET convertor, but you
have the VB.NET Resource kit which contains a free one.
 
C

Cor Ligthert

B

Bob Hollness

But using .NET classes is not doing encryption on his own. The classes are
doing it. That is the whole point of the class is it not?

--

Bob

--------------------------------------
I'll have a B please Bob.

Cor Ligthert said:
Mitchell,

Never do encryption on your own when it is about security encryption. When
you built your own you are fully responsible.

When you are looking for only compression, than I found this zip very nice
and simple because it has a Net class to use.

http://www.gzip.org/zlib/

When you are looking for security encryption, than I would just start
here.
http://msdn.microsoft.com/library/d...pref/html/frlrfSystemSecurityCryptography.asp

I hope this helps?

Cor
 
C

Cor Ligthert

Bob,

I have seen people here in these newsgroups asking how they could make an
encryption based on adding of a certain value to a byte array.

That is an example what I mean with doing encryption on your own.

Using a Microsoft class is that in my opinion not, because all the logic is
done in that class. In addition, with the encryption classes they give nice
explanations what technologies are used.

I assume that we mean the same, however I did like to explain this.

Cor
 
B

Bob Hollness

oops. Yeah, that is what we both meant.

Another popular "encryption" method I have seen is the old XOR command.....
 
H

Herfried K. Wagner [MVP]

Bob Hollness said:
Another popular "encryption" method I have seen is the old XOR
command.....

XOR encryption is very easy to implement, and in some cases it's sufficient
:).
 
B

Bob Hollness

XOR is a dreadful method for storing anything private. If developing on
..NET it would be crazy not to use the classes.
 
H

Herfried K. Wagner [MVP]

Bob,

Bob Hollness said:
XOR is a dreadful method for storing anything private. If developing on
.NET it would be crazy not to use the classes.

Well, simple XOR encryption only makes sense for making something
"unreadable" ;-). I agree, for "real" encryption, using the .NET
Framework's cryptography classes is the preferred way.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top