├── .GITIGNORE ├── AuthTest ├── AuthTest.dpr ├── AuthTest.dproj ├── AuthTest.res ├── fmAuthTest.dfm └── fmAuthTest.pas ├── AuthenticatorDesign.pas ├── Common └── pCons.pas ├── Etc ├── VDEtc.dpk ├── VDEtc.dproj ├── VDEtc.res └── pVDEtc.pas ├── GAuthenticator.dpk ├── GAuthenticator.dproj ├── GAuthenticator.res ├── Gaphics ├── Google.bmp ├── Logger.bmp └── TVDEtc.bmp ├── GoogleOAuth2Authenticator.dpk ├── GoogleOAuth2Authenticator.dproj ├── GoogleOAuth2Authenticator.groupproj ├── GoogleOAuth2Authenticator.res ├── LICENSE ├── Logger ├── VDLogger.dpk ├── VDLogger.dproj ├── VDLogger.res ├── fmVDLogger.pas └── pVDLogger.pas ├── OAuth2AuthenticatorGoogle.pas ├── QAuthenticator ├── QAuthenticator.dpk ├── QAuthenticator.dproj ├── QAuthenticator.res └── pQOAuth2Authenticator.pas ├── README.md └── pOA2Cons.pas /.GITIGNORE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/.GITIGNORE -------------------------------------------------------------------------------- /AuthTest/AuthTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/AuthTest/AuthTest.dpr -------------------------------------------------------------------------------- /AuthTest/AuthTest.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/AuthTest/AuthTest.dproj -------------------------------------------------------------------------------- /AuthTest/AuthTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/AuthTest/AuthTest.res -------------------------------------------------------------------------------- /AuthTest/fmAuthTest.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/AuthTest/fmAuthTest.dfm -------------------------------------------------------------------------------- /AuthTest/fmAuthTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/AuthTest/fmAuthTest.pas -------------------------------------------------------------------------------- /AuthenticatorDesign.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/AuthenticatorDesign.pas -------------------------------------------------------------------------------- /Common/pCons.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Common/pCons.pas -------------------------------------------------------------------------------- /Etc/VDEtc.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Etc/VDEtc.dpk -------------------------------------------------------------------------------- /Etc/VDEtc.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Etc/VDEtc.dproj -------------------------------------------------------------------------------- /Etc/VDEtc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Etc/VDEtc.res -------------------------------------------------------------------------------- /Etc/pVDEtc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Etc/pVDEtc.pas -------------------------------------------------------------------------------- /GAuthenticator.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/GAuthenticator.dpk -------------------------------------------------------------------------------- /GAuthenticator.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/GAuthenticator.dproj -------------------------------------------------------------------------------- /GAuthenticator.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/GAuthenticator.res -------------------------------------------------------------------------------- /Gaphics/Google.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Gaphics/Google.bmp -------------------------------------------------------------------------------- /Gaphics/Logger.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Gaphics/Logger.bmp -------------------------------------------------------------------------------- /Gaphics/TVDEtc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Gaphics/TVDEtc.bmp -------------------------------------------------------------------------------- /GoogleOAuth2Authenticator.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/GoogleOAuth2Authenticator.dpk -------------------------------------------------------------------------------- /GoogleOAuth2Authenticator.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/GoogleOAuth2Authenticator.dproj -------------------------------------------------------------------------------- /GoogleOAuth2Authenticator.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/GoogleOAuth2Authenticator.groupproj -------------------------------------------------------------------------------- /GoogleOAuth2Authenticator.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/GoogleOAuth2Authenticator.res -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/LICENSE -------------------------------------------------------------------------------- /Logger/VDLogger.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Logger/VDLogger.dpk -------------------------------------------------------------------------------- /Logger/VDLogger.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Logger/VDLogger.dproj -------------------------------------------------------------------------------- /Logger/VDLogger.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Logger/VDLogger.res -------------------------------------------------------------------------------- /Logger/fmVDLogger.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Logger/fmVDLogger.pas -------------------------------------------------------------------------------- /Logger/pVDLogger.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/Logger/pVDLogger.pas -------------------------------------------------------------------------------- /OAuth2AuthenticatorGoogle.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/OAuth2AuthenticatorGoogle.pas -------------------------------------------------------------------------------- /QAuthenticator/QAuthenticator.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/QAuthenticator/QAuthenticator.dpk -------------------------------------------------------------------------------- /QAuthenticator/QAuthenticator.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/QAuthenticator/QAuthenticator.dproj -------------------------------------------------------------------------------- /QAuthenticator/QAuthenticator.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/QAuthenticator/QAuthenticator.res -------------------------------------------------------------------------------- /QAuthenticator/pQOAuth2Authenticator.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/QAuthenticator/pQOAuth2Authenticator.pas -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/README.md -------------------------------------------------------------------------------- /pOA2Cons.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pasquina/GoogleOAuth2Authenticator/HEAD/pOA2Cons.pas --------------------------------------------------------------------------------