Encryption Expert Require

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Sumit Gupta

    Encryption Expert Require

    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.


  • CJ Taylor

    #2
    Re: Encryption Expert Require

    Zip and Rar are compression formats and don't really do anything with
    encryption. You can just Google for the Zip File format and Rar file format
    and get the file layouts.

    Actually here is a good link, just search for zip, its in there




    great resource. both rar and zip are there, I just searched.

    Now, for your encryption questoin.

    There are two types of encryption, asymmetrical and symmetrical encryption.
    Asymetrical is most known as public key encryption, where one key encrypts
    the data and another one decrypts it. This is most notably seen in the RSA
    encryption method (good reading).

    Symmetrical uses the same key to decrypt as it does to encrypt (sometimes
    using an Initializiation Vector (IV) to facilitate encryption further).
    Each one has its own purpose, it just depends what /how you want to use it.

    What do you want to know about it further?

    -CJ

    "Sumit Gupta" <vikasumit@hotm ail.com> wrote in message
    news:ursz4fgLEH A.3712@TK2MSFTN GP10.phx.gbl...[color=blue]
    > Can anyone please tell me how to encrpt string or any kind of Data. Also[/color]
    the[color=blue]
    > Algorithm of Compression. Any Link tutorial etc.
    >
    > Like : Zip or RAR Formats etc.
    >
    >[/color]


    Comment

    • Herfried K. Wagner [MVP]

      #3
      Re: Encryption Expert Require

      * "Sumit Gupta" <vikasumit@hotm ail.com> scripsit:[color=blue]
      > Can anyone please tell me how to encrpt string or any kind of Data. Also the
      > Algorithm of Compression. Any Link tutorial etc.[/color]

      Do you want to know /how/ to do that (algorithms), or do you just wand
      to encrypt or compress data?

      --
      Herfried K. Wagner [MVP]
      <URL:http://dotnet.mvps.org/>

      Comment

      Working...