Hi,
i donĀ“t know if this of use for someone, but here is a function, which creates 
a one time password (OTP). 
There are many devices out there (like routers) which offer one time password 
authentication for example for remote vpn dial in e.g. Draytek Vigor Routers.

function OTP pPin,pSecret
   put the seconds into tTime
   put char 1 to -2 of tTime into tTime
   put tTime & pSecret & pPin into tString
   put md5digest(tString) into tString
   get binarydecode("H6",tString,tOTP)
   return tOTP
end OT

Regards,

Matthias






_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to