コード例 #1
0
ファイル: Program.cs プロジェクト: likbe/Yubico-Dotnet
        /// <summary>
        /// Main of the current console program
        /// </summary>
        /// <param name="args">Arguments of the current execution</param>
        /// <returns>A negative value if an error occured, 0 otherwise</returns>
        public static int Main(string[] args)
        {
            try
            {
                int result = 0;
                if (args == null || args.Length == 0)
                {
                    Console.WriteLine("Usage : Yubico.Console 'OTP'. You must press on your YubiKey to get the 'OTP' value. Do NOT type the quotes ''.");
                    result = -1;
                }
                else
                {
                    YubicoRequest request = new YubicoRequest();
                    string otp = args[0];
                    YubicoAnswer answer = request.Validate(otp);
                    Console.WriteLine(String.Format(CultureInfo.InvariantCulture, "Validation status is : {0}", answer.Status.ToString()));
                }

                return result;
            }
            catch (Exception exception)
            {
                Console.WriteLine(exception.Message);
                return -2;
            }
        }
コード例 #2
0
        /// <summary>
        /// Main of the current console program
        /// </summary>
        /// <param name="args">Arguments of the current execution</param>
        /// <returns>A negative value if an error occured, 0 otherwise</returns>
        public static int Main(string[] args)
        {
            try
            {
                int result = 0;
                if (args == null || args.Length == 0)
                {
                    Console.WriteLine("Usage : Yubico.Console 'OTP'. You must press on your YubiKey to get the 'OTP' value. Do NOT type the quotes ''.");
                    result = -1;
                }
                else
                {
                    YubicoRequest request = new YubicoRequest();
                    string        otp     = args[0];
                    YubicoAnswer  answer  = request.Validate(otp);
                    Console.WriteLine(String.Format(CultureInfo.InvariantCulture, "Validation status is : {0}", answer.Status.ToString()));
                }

                return(result);
            }
            catch (Exception exception)
            {
                Console.WriteLine(exception.Message);
                return(-2);
            }
        }