Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: [ANN] IMAP/SMTP authentication (cram-md5)

From: andreas:bolka:gmx at: 25-Jun-2004 14:46

Thursday, June 24, 2004, 11:56:12 PM, rebOldes wrote:
>> I've just found (on Altme) that SMTP authentication is needed, I >> don't use it but from some strange reason I did this function some >> time ago which may be useful, so check it out.
funnily enough I ran over the same problem about a year ago, implemented my own HMAC/CRAM-MD5 stuff only to discover that it's already built into REBOL. motivated by this discovery I wrote a message <[1186563013--20030725192644--gmx--net]> to stop others from making the same mistake ;) amongst the ramblings I also suggested the following function: cram-md5: func [ username challenge key ] [ reform [ username lowercase enbase/base checksum/method/key challenge 'md5 key 16 ] ] -- Best regards, Andreas