473,666 Members | 2,073 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Looking for Encryption/Compression .NET Component

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!

--
- Mitchell
Nov 21 '05 #1
12 1778
Vincent,

"Mitchell Vincent" <mi************ *@community.nos pam> schrieb:
As the subject suggests, I'm looking for a compression and encryption
component(s) for use with VB.NET.


Encryption:

See 'System.Cryptog raphy' 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.componenton e.com/products.aspx?T abTypeID=1&Item Type=1&PanelInd ex=14&ItemID=53 569&SubCategory TypeID=0&TabMap ID=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/>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Nov 21 '05 #2
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 ;-)

Nov 21 '05 #3
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.
Nov 21 '05 #4
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/de...yptography.asp

I hope this helps?

Cor


"Mitchell Vincent" <mi************ *@community.nos pam> schreef in bericht
news:e$******** ********@TK2MSF TNGP15.phx.gbl. ..
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!

--
- Mitchell

Nov 21 '05 #5
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" <no************ @planet.nl> wrote in message
news:OF******** ******@tk2msftn gp13.phx.gbl...
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/de...yptography.asp

I hope this helps?

Cor


"Mitchell Vincent" <mi************ *@community.nos pam> schreef in bericht
news:e$******** ********@TK2MSF TNGP15.phx.gbl. ..
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!

--
- Mitchell


Nov 21 '05 #6
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
Nov 21 '05 #7
oops. Yeah, that is what we both meant.

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

--

Bob

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

"Cor Ligthert" <no************ @planet.nl> wrote in message
news:e8******** ******@TK2MSFTN GP15.phx.gbl...
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

Nov 21 '05 #8
"Bob Hollness" <bo*@blockbuste r.com> schrieb:
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
:-).

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Nov 21 '05 #9
XOR is a dreadful method for storing anything private. If developing on
..NET it would be crazy not to use the classes.

--

Bob

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

"Herfried K. Wagner [MVP]" <hi************ ***@gmx.at> wrote in message
news:Oj******** ******@TK2MSFTN GP15.phx.gbl...
"Bob Hollness" <bo*@blockbuste r.com> schrieb:
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 :-).

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Nov 21 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
3262
by: Google Mike | last post by:
Of course, one could always use other kinds of encryption/encoding/obfuscation techniques such as XOR complement, but this example provides an extremely secure version using methods like Blowfish, MD5, DES, etc. This took me about 4 hours to figure out and perfect, but the two functions below will work with PHP on many versions of Linux. I have RedHat 9, in this case. I designed this to use a pretty small compression and encryption...
24
2060
by: c3poptuse | last post by:
Supercomputer and encryption and compression @ rate of 96% Take a document then or a 3D matrix document change it two random or binary code or just a program for 0's and 1's and fold it over and over like a piece of paper then having the 1 and 0 add each other or the 0,1's canceling each other out 1+0=0 and 0+1=1 1+1=1 0+0=0 if you gave the folds addresses like on a spread sheet there would be no math. First A 1-24 would fold to k 1-24...
8
3736
by: VM | last post by:
Does C# work with encryption and compression? I know that there are C# Encryption class(es) but my client is also interested in compressing the data. We want to use some encryption in the generated output data ascii files and also some type of compression since these data files can be huge. Thanks.
113
12299
by: Bonj | last post by:
I was in need of an encryption algorithm to the following requirements: 1) Must be capable of encrypting strings to a byte array, and decyrpting back again to the same string 2) Must have the same algorithm work with strings that may or may not be unicode 3) Number of bytes back must either be <= number of _TCHARs in * sizeof(_TCHAR), or the relation between output size and input size can be calculated simply. Has to take into account the...
3
372
by: HateBSOD | last post by:
How does one encrypt a binary file, I have it working with just text any samples or website recomendations would be helpful. Also When you encrypt a file with DES and then want to zip it, the file does not get compressed, but with pgp the file gets compressed. Does AES also compress? Thanks, Dj
2
1530
by: Sumit Gupta | last post by:
Can anyone please tell me how to encrpt string or any kind of Data. Also the Algorithm of Compression. Any Link tutorial etc. Like : Zip or RAR Formats etc.
0
8448
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8356
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8552
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6198
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5666
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4198
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4369
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2773
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2011
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.