Looking for Encryption/Compression .NET Component

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mitchell Vincent

    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


  • Herfried K. Wagner [MVP]

    #2
    Re: Looking for Encryption/Compression .NET Component

    Vincent,

    "Mitchell Vincent" <mitchellvincen t@community.nos pam> schrieb:[color=blue]
    > As the subject suggests, I'm looking for a compression and encryption
    > component(s) for use with VB.NET.[/color]

    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/>

    Comment

    • Nikolay Petrov

      #3
      Re: Looking for Encryption/Compression .NET Component

      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 ;-)

      Comment

      • Crouchie1998

        #4
        Re: Looking for Encryption/Compression .NET Component

        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.

        Comment

        • Cor Ligthert

          #5
          Re: Looking for Encryption/Compression .NET Component

          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.



          When you are looking for security encryption, than I would just start here.


          I hope this helps?

          Cor






          "Mitchell Vincent" <mitchellvincen t@community.nos pam> schreef in bericht
          news:e$%231FwVD FHA.2756@TK2MSF TNGP15.phx.gbl. ..[color=blue]
          > 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
          >[/color]


          Comment

          • Bob Hollness

            #6
            Re: Looking for Encryption/Compression .NET Component

            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" <notmyfirstname @planet.nl> wrote in message
            news:OFqbl7bDFH A.3840@tk2msftn gp13.phx.gbl...[color=blue]
            > 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" <mitchellvincen t@community.nos pam> schreef in bericht
            > news:e$%231FwVD FHA.2756@TK2MSF TNGP15.phx.gbl. ..[color=green]
            >> 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
            >>[/color]
            >
            >[/color]


            Comment

            • Cor Ligthert

              #7
              Re: Looking for Encryption/Compression .NET Component

              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


              Comment

              • Bob Hollness

                #8
                Re: Looking for Encryption/Compression .NET Component

                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" <notmyfirstname @planet.nl> wrote in message
                news:e87TZedDFH A.3120@TK2MSFTN GP15.phx.gbl...[color=blue]
                > 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
                >[/color]


                Comment

                • Herfried K. Wagner [MVP]

                  #9
                  Re: Looking for Encryption/Compression .NET Component

                  "Bob Hollness" <bob@blockbuste r.com> schrieb:[color=blue]
                  > Another popular "encryption " method I have seen is the old XOR
                  > command.....[/color]

                  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/>

                  Comment

                  • Bob Hollness

                    #10
                    Re: Looking for Encryption/Compression .NET Component

                    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]" <hirf-spam-me-here@gmx.at> wrote in message
                    news:OjQmuhdDFH A.3324@TK2MSFTN GP15.phx.gbl...[color=blue]
                    > "Bob Hollness" <bob@blockbuste r.com> schrieb:[color=green]
                    >> Another popular "encryption " method I have seen is the old XOR
                    >> command.....[/color]
                    >
                    > 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/>[/color]


                    Comment

                    • Pete Wright

                      #11
                      Re: Looking for Encryption/Compression .NET Component

                      For the encryption stuff, probably one of the most complete frameworks out
                      there is available as a part of Enterprise Library.



                      Hope that helps,


                      --
                      Pete Wright
                      Author of ADO.NET Novice to Pro for Apress


                      "Mitchell Vincent" <mitchellvincen t@community.nos pam> wrote in message
                      news:e$%231FwVD FHA.2756@TK2MSF TNGP15.phx.gbl. ..[color=blue]
                      > 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
                      >[/color]


                      Comment

                      • Herfried K. Wagner [MVP]

                        #12
                        Re: Looking for Encryption/Compression .NET Component

                        Bob,

                        "Bob Hollness" <bob@blockbuste r.com> schrieb:[color=blue]
                        > XOR is a dreadful method for storing anything private. If developing on
                        > .NET it would be crazy not to use the classes.[/color]

                        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.

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

                        Comment

                        • Herfried K. Wagner [MVP]

                          #13
                          Re: Looking for Encryption/Compression .NET Component

                          Hi Crouchie,

                          "Crouchie19 98" <Crouchie1998@d iscussions.micr osoft.com> schrieb:[color=blue]
                          > 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.[/color]

                          I never used the converter contained in the resource kit, but there are lots
                          of other C# -> VB.NET converters available:

                          Converting code between .NET programming languages
                          <URL:http://dotnet.mvps.org/dotnet/faqs/?id=languagecon verters&lang=en >

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

                          Comment

                          Working...