Encryption

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

    Encryption

    hello,
    we have a old backend Service written in VB6
    I have Re-written this service using c#

    A part of the service uses AspEncrypt from persist software
    is there a alternative in c# to get the same affect of the
    Aspencrypt com object (activex) .
    In the Past ive seen these 3rd party products acually used the microsoft sdk
    and just created a activex wrapper

    thanks



  • Mark Rae [MVP]

    #2
    Re: Encryption

    "Analizer1" <dvs_bis@sbcglo bal.netwrote in message
    news:yi%5j.3081 $Vq.548@nlpi061 .nbdc.sbc.com.. .
    is there a alternative in c#



    --
    Mark Rae
    ASP.NET MVP


    Comment

    • Marc Gravell

      #3
      Re: Encryption

      There are plenty of industry-standard encryption/hashing algorithms
      included in the framework, in System.Security .Cryptography; I doubt
      any will be side-by-side compatible with AspEncrypt (which leaked like
      a sieve last time I used it, btw), but if this is just for
      *equivalent* (rather than identical) functionality you should be
      spoilt for choice.

      Provides cryptographic services, including secure encoding and decoding of data, as well as many other operations, such as hashing, random number generation, and message authentication. For more information, see Cryptographic Services.


      Marc

      Comment

      • =?ISO-8859-1?Q?Arne_Vajh=F8j?=

        #4
        Re: Encryption

        Marc Gravell wrote:
        There are plenty of industry-standard encryption/hashing algorithms
        included in the framework, in System.Security .Cryptography; I doubt
        any will be side-by-side compatible with AspEncrypt (which leaked like
        a sieve last time I used it, btw), but if this is just for
        *equivalent* (rather than identical) functionality you should be
        spoilt for choice.
        >
        http://msdn2.microsoft.com/en-us/lib...ptography.aspx
        I don't know AspEncrypt (based on your statement I assume I should
        consider myself lucky !), but either it uses the same well defined
        algorithms (DES, 3DES, RC4, AES, RSA, DSA, MD5, SHA-1 etc.) that
        ..NET does *or* it is time to switch to those algorithms !

        Arne

        Comment

        Working...