├── .gitattributes ├── .gitignore ├── AutenticarOTP.dpr ├── AutenticarOTP.dproj ├── AutenticarOTP.dproj.local ├── AutenticarOTP.identcache ├── AutenticarOTP.res ├── Google ├── Base32U.pas └── GoogleOTP.pas ├── LICENSE ├── PrintAuthenticator.png ├── README.md ├── UAuthenticator.dfm ├── UAuthenticator.pas ├── Win32 └── Debug │ ├── AutenticarOTP.exe │ ├── Base32U.dcu │ ├── GoogleOTP.dcu │ └── UAuthenticator.dcu └── __history ├── UAuthenticator.dfm.~1~ ├── UAuthenticator.dfm.~2~ ├── UAuthenticator.dfm.~3~ ├── UAuthenticator.dfm.~4~ ├── UAuthenticator.dfm.~5~ ├── UAuthenticator.dfm.~6~ ├── UAuthenticator.pas.~10~ ├── UAuthenticator.pas.~11~ └── UAuthenticator.pas.~2~ /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/.gitignore -------------------------------------------------------------------------------- /AutenticarOTP.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/AutenticarOTP.dpr -------------------------------------------------------------------------------- /AutenticarOTP.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/AutenticarOTP.dproj -------------------------------------------------------------------------------- /AutenticarOTP.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/AutenticarOTP.dproj.local -------------------------------------------------------------------------------- /AutenticarOTP.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/AutenticarOTP.identcache -------------------------------------------------------------------------------- /AutenticarOTP.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/AutenticarOTP.res -------------------------------------------------------------------------------- /Google/Base32U.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/Google/Base32U.pas -------------------------------------------------------------------------------- /Google/GoogleOTP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/Google/GoogleOTP.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/LICENSE -------------------------------------------------------------------------------- /PrintAuthenticator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/PrintAuthenticator.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/README.md -------------------------------------------------------------------------------- /UAuthenticator.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/UAuthenticator.dfm -------------------------------------------------------------------------------- /UAuthenticator.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/UAuthenticator.pas -------------------------------------------------------------------------------- /Win32/Debug/AutenticarOTP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/Win32/Debug/AutenticarOTP.exe -------------------------------------------------------------------------------- /Win32/Debug/Base32U.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/Win32/Debug/Base32U.dcu -------------------------------------------------------------------------------- /Win32/Debug/GoogleOTP.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/Win32/Debug/GoogleOTP.dcu -------------------------------------------------------------------------------- /Win32/Debug/UAuthenticator.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/Win32/Debug/UAuthenticator.dcu -------------------------------------------------------------------------------- /__history/UAuthenticator.dfm.~1~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/__history/UAuthenticator.dfm.~1~ -------------------------------------------------------------------------------- /__history/UAuthenticator.dfm.~2~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/__history/UAuthenticator.dfm.~2~ -------------------------------------------------------------------------------- /__history/UAuthenticator.dfm.~3~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/__history/UAuthenticator.dfm.~3~ -------------------------------------------------------------------------------- /__history/UAuthenticator.dfm.~4~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/__history/UAuthenticator.dfm.~4~ -------------------------------------------------------------------------------- /__history/UAuthenticator.dfm.~5~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/__history/UAuthenticator.dfm.~5~ -------------------------------------------------------------------------------- /__history/UAuthenticator.dfm.~6~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/__history/UAuthenticator.dfm.~6~ -------------------------------------------------------------------------------- /__history/UAuthenticator.pas.~10~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/__history/UAuthenticator.pas.~10~ -------------------------------------------------------------------------------- /__history/UAuthenticator.pas.~11~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/__history/UAuthenticator.pas.~11~ -------------------------------------------------------------------------------- /__history/UAuthenticator.pas.~2~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoscoBecker/Delphi-and-Google-Authenticator/HEAD/__history/UAuthenticator.pas.~2~ --------------------------------------------------------------------------------