Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default HMAC-MD5

    Hello all

    Is HMAC-MD5 supported on the .NET 1.1 framework? Some of the information that I have come across seems like it indicates that it is not supported
    What I am trying to do is to generate a trust_key based on this
    TRUST_KEY = HMAC("MD5",Secret_key,user_id), I am not sure how to implement this in C#, asp.net. I am able to generate a secret key and the user id of course is known

    Thank
    R

    RM Guest

  2. Similar Questions and Discussions

    1. authorize.net fingerprint generation with HMAC
      Hello, I am trying to integrate my website with authorize.net's payment gateway (my first time integrating with a gateway), and to do this I need...
    2. .Net equivalent of OpenSSL's libeay32-library (HMAC based on SHA1)?
      Hi all. I need to implement a Hashed Message Authentication Code based on the SHA1 algorithm, that is equivalent to OpenSSL's "libeay32"-library....
  3. #2

    Default Re: HMAC-MD5

    You don't have the HMACMD5 in v1.1., only HMACSHA1 and MACTripleDES. You
    might use any of this algs.

    You have a complete sample at [url]http://ncrypto.sourceforge.net[/url]
    Check out the one of the overloads of CryptoHelper.ComputeKeyedHash()

    Regards,
    --
    Hernan de Lahitte
    Lagash Systems S.A.
    [url]http://weblogs.asp.net/hernandl[/url]


    This posting is provided "AS IS" with no warranties, and confers no rights.

    "RM" <anonymous@discussions.microsoft.com> wrote in message
    news:312B4EEC-9322-40E8-A903-95DAA929FC13@microsoft.com...
    > Hello all,
    >
    > Is HMAC-MD5 supported on the .NET 1.1 framework? Some of the information
    that I have come across seems like it indicates that it is not supported.
    > What I am trying to do is to generate a trust_key based on this:
    > TRUST_KEY = HMAC("MD5",Secret_key,user_id), I am not sure how to implement
    this in C#, asp.net. I am able to generate a secret key and the user id of
    course is known.
    >
    > Thanks
    > RM
    >

    Hernan de Lahitte Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139