コード例 #1
0
ファイル: TCISOTP.cs プロジェクト: chaudt/DemoOTP_QRCode
        public static int OTP(int id, OTPMinuteTypes type)
        {
            var dt = DateTime.Now;

            return((id * 1001) ^ ((dt.Day * 100 + dt.Month) * 100 + dt.Hour) * 10 + FindNumberKey(dt.Minute, (int)type));
        }
コード例 #2
0
ファイル: TCISOTP.cs プロジェクト: chaudt/DemoOTP_QRCode
        public static int RetrievalOTP(int otp, OTPMinuteTypes type)
        {
            var dt = DateTime.Now;

            return((otp ^ (((dt.Day * 100 + dt.Month) * 100 + dt.Hour) * 10 + FindNumberKey(dt.Minute, (int)type))) / 1001);
        }