├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .hgsub ├── .hgsubstate ├── LICENSE ├── README.md └── mobile ├── android └── README ├── blackberry ├── BlackBerry_App_Descriptor.xml ├── GoogleAuthenticator.jdp ├── LICENSE ├── NOTICE ├── application.properties ├── build.xml ├── entry │ └── startup.properties ├── res │ ├── drawable-hdpi │ │ └── icon.png │ └── drawable-mdpi │ │ └── icon.png └── src │ ├── com │ └── google │ │ └── authenticator │ │ └── blackberry │ │ ├── AccountDb.java │ │ ├── AuthenticatorApplication.java │ │ ├── AuthenticatorScreen.java │ │ ├── Base32Legacy.java │ │ ├── Base32String.java │ │ ├── BufferedReader.java │ │ ├── CheckCodeScreen.java │ │ ├── EnterKeyScreen.java │ │ ├── FieldUtils.java │ │ ├── PasscodeGenerator.java │ │ ├── PinListField.java │ │ ├── PinListFieldCallback.java │ │ ├── URLEncoder.java │ │ ├── UpdateCallback.java │ │ ├── UpdateTask.java │ │ ├── Uri.java │ │ ├── UriActiveFieldCookie.java │ │ ├── UriActiveFieldCookieFactory.java │ │ ├── UriMenuItem.java │ │ ├── UriStringPattern.java │ │ ├── img │ │ ├── ic_lock_lock.png │ │ └── icon.png │ │ └── resource │ │ ├── Authenticator.rrc │ │ ├── Authenticator.rrh │ │ ├── Authenticator_ar.rrc │ │ ├── Authenticator_bg.rrc │ │ ├── Authenticator_ca.rrc │ │ ├── Authenticator_cs.rrc │ │ ├── Authenticator_da.rrc │ │ ├── Authenticator_de.rrc │ │ ├── Authenticator_el.rrc │ │ ├── Authenticator_en.rrc │ │ ├── Authenticator_en_GB.rrc │ │ ├── Authenticator_es.rrc │ │ ├── Authenticator_fi.rrc │ │ ├── Authenticator_fr.rrc │ │ ├── Authenticator_hi.rrc │ │ ├── Authenticator_hr.rrc │ │ ├── Authenticator_hu.rrc │ │ ├── Authenticator_id.rrc │ │ ├── Authenticator_it.rrc │ │ ├── Authenticator_iw.rrc │ │ ├── Authenticator_ja.rrc │ │ ├── Authenticator_ko.rrc │ │ ├── Authenticator_lt.rrc │ │ ├── Authenticator_lv.rrc │ │ ├── Authenticator_nl.rrc │ │ ├── Authenticator_no.rrc │ │ ├── Authenticator_pl.rrc │ │ ├── Authenticator_pt.rrc │ │ ├── Authenticator_pt_BR.rrc │ │ ├── Authenticator_pt_PT.rrc │ │ ├── Authenticator_ro.rrc │ │ ├── Authenticator_ru.rrc │ │ ├── Authenticator_sk.rrc │ │ ├── Authenticator_sl.rrc │ │ ├── Authenticator_sr.rrc │ │ ├── Authenticator_sv.rrc │ │ ├── Authenticator_th.rrc │ │ ├── Authenticator_tl.rrc │ │ ├── Authenticator_tr.rrc │ │ ├── Authenticator_uk.rrc │ │ ├── Authenticator_vi.rrc │ │ ├── Authenticator_zh.rrc │ │ ├── Authenticator_zh_CN.rrc │ │ └── Authenticator_zh_TW.rrc │ └── org │ └── bouncycastle │ └── crypto │ ├── CipherParameters.java │ ├── DataLengthException.java │ ├── Digest.java │ ├── ExtendedDigest.java │ ├── Mac.java │ ├── RuntimeCryptoException.java │ ├── digests │ ├── GeneralDigest.java │ └── SHA1Digest.java │ ├── macs │ └── HMac.java │ ├── params │ └── KeyParameter.java │ └── util │ └── Pack.java └── ios ├── Classes ├── HOTPGenerator.h ├── HOTPGenerator.m ├── HOTPGeneratorTest.m ├── OTPAuthAboutController.h ├── OTPAuthAboutController.m ├── OTPAuthAppDelegate.h ├── OTPAuthAppDelegate.m ├── OTPAuthApplication.h ├── OTPAuthApplication.m ├── OTPAuthBarClock.h ├── OTPAuthBarClock.m ├── OTPAuthURL.h ├── OTPAuthURL.m ├── OTPAuthURLEntryController.h ├── OTPAuthURLEntryController.m ├── OTPAuthURLTest.m ├── OTPGenerator.h ├── OTPGenerator.m ├── OTPScannerOverlayView.h ├── OTPScannerOverlayView.m ├── OTPTableView.h ├── OTPTableView.m ├── OTPTableViewCell.h ├── OTPTableViewCell.m ├── OTPWelcomeViewController.h ├── OTPWelcomeViewController.m ├── RootViewController.h ├── RootViewController.m ├── TOTPGenerator.h ├── TOTPGenerator.m ├── TOTPGeneratorTest.m ├── UIColor+MobileColors.h └── UIColor+MobileColors.m ├── Entitlements.plist ├── OTPAuth-Info.plist ├── OTPAuth.pch ├── OTPAuth.xcodeproj └── project.pbxproj ├── OTPAuthUnitTest-Info.plist ├── README ├── Resources ├── Default.png ├── English.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── GoogleNavBarLogo.png ├── Hints.html ├── Icon-iPad.png ├── Icon.png ├── Icon_2x.png ├── Info.pdf ├── Info.png ├── MainWindow.xib ├── OTPAuthAboutController.xib ├── OTPAuthURLEntryController.xib ├── OTPTableViewCell.xib ├── OTPWelcomeViewController.xib ├── PlusButton.pdf ├── PlusButton.png ├── Refresh.pdf ├── Refresh.png ├── RootViewController.xib ├── ar.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── bg.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── ca.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── close.pdf ├── close.png ├── cs.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── da.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── de.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── de_AT.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── de_CH.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── el.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── en_GB.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── en_IE.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── en_IN.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── en_SG.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── en_ZA.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── es.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── fi.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── fil.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── fr.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── fr_CH.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── gsw.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── he.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── hi.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── hr.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── hu.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── iOSIcon-Auth.psd ├── iTunesArtwork.png ├── id.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── in.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── it.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── iw.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── ja.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── ko.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── ln.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── lt.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── lv.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── mo.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── nl.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── no.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── pl.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── pt.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── pt_BR.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── pt_PT.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── ro.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── ru.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── sk.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── sl.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── sr.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── strongauth.pdf ├── sv.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── th.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── tl.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── tr.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── uk.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── vi.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── zh.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── zh_CN.lproj │ ├── LegalNotices.html │ └── Localizable.strings ├── zh_HK.lproj │ ├── LegalNotices.html │ └── Localizable.strings └── zh_TW.lproj │ ├── LegalNotices.html │ └── Localizable.strings └── main.m /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/.hgsub -------------------------------------------------------------------------------- /.hgsubstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/.hgsubstate -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/README.md -------------------------------------------------------------------------------- /mobile/android/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/android/README -------------------------------------------------------------------------------- /mobile/blackberry/BlackBerry_App_Descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/BlackBerry_App_Descriptor.xml -------------------------------------------------------------------------------- /mobile/blackberry/GoogleAuthenticator.jdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/GoogleAuthenticator.jdp -------------------------------------------------------------------------------- /mobile/blackberry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/LICENSE -------------------------------------------------------------------------------- /mobile/blackberry/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/NOTICE -------------------------------------------------------------------------------- /mobile/blackberry/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/application.properties -------------------------------------------------------------------------------- /mobile/blackberry/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/build.xml -------------------------------------------------------------------------------- /mobile/blackberry/entry/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/entry/startup.properties -------------------------------------------------------------------------------- /mobile/blackberry/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /mobile/blackberry/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/AccountDb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/AccountDb.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/AuthenticatorApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/AuthenticatorApplication.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/AuthenticatorScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/AuthenticatorScreen.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/Base32Legacy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/Base32Legacy.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/Base32String.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/Base32String.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/BufferedReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/BufferedReader.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/CheckCodeScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/CheckCodeScreen.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/EnterKeyScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/EnterKeyScreen.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/FieldUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/FieldUtils.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/PasscodeGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/PasscodeGenerator.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/PinListField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/PinListField.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/PinListFieldCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/PinListFieldCallback.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/URLEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/URLEncoder.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/UpdateCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/UpdateCallback.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/UpdateTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/UpdateTask.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/Uri.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/Uri.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/UriActiveFieldCookie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/UriActiveFieldCookie.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/UriActiveFieldCookieFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/UriActiveFieldCookieFactory.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/UriMenuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/UriMenuItem.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/UriStringPattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/UriStringPattern.java -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/img/ic_lock_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/img/ic_lock_lock.png -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/img/icon.png -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator.rrh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator.rrh -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ar.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ar.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_bg.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_bg.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ca.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ca.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_cs.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_cs.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_da.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_da.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_de.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_de.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_el.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_el.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_en.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_en.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_en_GB.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_en_GB.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_es.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_es.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_fi.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_fi.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_fr.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_fr.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_hi.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_hi.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_hr.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_hr.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_hu.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_hu.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_id.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_id.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_it.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_it.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_iw.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_iw.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ja.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ja.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ko.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ko.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_lt.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_lt.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_lv.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_lv.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_nl.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_nl.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_no.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_no.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_pl.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_pl.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_pt.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_pt.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_pt_BR.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_pt_BR.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_pt_PT.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_pt_PT.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ro.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ro.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ru.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_ru.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_sk.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_sk.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_sl.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_sl.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_sr.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_sr.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_sv.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_sv.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_th.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_th.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_tl.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_tl.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_tr.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_tr.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_uk.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_uk.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_vi.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_vi.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_zh.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_zh.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_zh_CN.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_zh_CN.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_zh_TW.rrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/com/google/authenticator/blackberry/resource/Authenticator_zh_TW.rrc -------------------------------------------------------------------------------- /mobile/blackberry/src/org/bouncycastle/crypto/CipherParameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/org/bouncycastle/crypto/CipherParameters.java -------------------------------------------------------------------------------- /mobile/blackberry/src/org/bouncycastle/crypto/DataLengthException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/org/bouncycastle/crypto/DataLengthException.java -------------------------------------------------------------------------------- /mobile/blackberry/src/org/bouncycastle/crypto/Digest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/org/bouncycastle/crypto/Digest.java -------------------------------------------------------------------------------- /mobile/blackberry/src/org/bouncycastle/crypto/ExtendedDigest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/org/bouncycastle/crypto/ExtendedDigest.java -------------------------------------------------------------------------------- /mobile/blackberry/src/org/bouncycastle/crypto/Mac.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/org/bouncycastle/crypto/Mac.java -------------------------------------------------------------------------------- /mobile/blackberry/src/org/bouncycastle/crypto/RuntimeCryptoException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/org/bouncycastle/crypto/RuntimeCryptoException.java -------------------------------------------------------------------------------- /mobile/blackberry/src/org/bouncycastle/crypto/digests/GeneralDigest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/org/bouncycastle/crypto/digests/GeneralDigest.java -------------------------------------------------------------------------------- /mobile/blackberry/src/org/bouncycastle/crypto/digests/SHA1Digest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/org/bouncycastle/crypto/digests/SHA1Digest.java -------------------------------------------------------------------------------- /mobile/blackberry/src/org/bouncycastle/crypto/macs/HMac.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/org/bouncycastle/crypto/macs/HMac.java -------------------------------------------------------------------------------- /mobile/blackberry/src/org/bouncycastle/crypto/params/KeyParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/org/bouncycastle/crypto/params/KeyParameter.java -------------------------------------------------------------------------------- /mobile/blackberry/src/org/bouncycastle/crypto/util/Pack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/blackberry/src/org/bouncycastle/crypto/util/Pack.java -------------------------------------------------------------------------------- /mobile/ios/Classes/HOTPGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/HOTPGenerator.h -------------------------------------------------------------------------------- /mobile/ios/Classes/HOTPGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/HOTPGenerator.m -------------------------------------------------------------------------------- /mobile/ios/Classes/HOTPGeneratorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/HOTPGeneratorTest.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthAboutController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthAboutController.h -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthAboutController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthAboutController.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthAppDelegate.h -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthAppDelegate.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthApplication.h -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthApplication.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthBarClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthBarClock.h -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthBarClock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthBarClock.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthURL.h -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthURL.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthURLEntryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthURLEntryController.h -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthURLEntryController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthURLEntryController.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPAuthURLTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPAuthURLTest.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPGenerator.h -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPGenerator.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPScannerOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPScannerOverlayView.h -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPScannerOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPScannerOverlayView.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPTableView.h -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPTableView.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPTableViewCell.h -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPTableViewCell.m -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPWelcomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPWelcomeViewController.h -------------------------------------------------------------------------------- /mobile/ios/Classes/OTPWelcomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/OTPWelcomeViewController.m -------------------------------------------------------------------------------- /mobile/ios/Classes/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/RootViewController.h -------------------------------------------------------------------------------- /mobile/ios/Classes/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/RootViewController.m -------------------------------------------------------------------------------- /mobile/ios/Classes/TOTPGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/TOTPGenerator.h -------------------------------------------------------------------------------- /mobile/ios/Classes/TOTPGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/TOTPGenerator.m -------------------------------------------------------------------------------- /mobile/ios/Classes/TOTPGeneratorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/TOTPGeneratorTest.m -------------------------------------------------------------------------------- /mobile/ios/Classes/UIColor+MobileColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/UIColor+MobileColors.h -------------------------------------------------------------------------------- /mobile/ios/Classes/UIColor+MobileColors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Classes/UIColor+MobileColors.m -------------------------------------------------------------------------------- /mobile/ios/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Entitlements.plist -------------------------------------------------------------------------------- /mobile/ios/OTPAuth-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/OTPAuth-Info.plist -------------------------------------------------------------------------------- /mobile/ios/OTPAuth.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/OTPAuth.pch -------------------------------------------------------------------------------- /mobile/ios/OTPAuth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/OTPAuth.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /mobile/ios/OTPAuthUnitTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/OTPAuthUnitTest-Info.plist -------------------------------------------------------------------------------- /mobile/ios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/README -------------------------------------------------------------------------------- /mobile/ios/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/Default.png -------------------------------------------------------------------------------- /mobile/ios/Resources/English.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/English.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/GoogleNavBarLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/GoogleNavBarLogo.png -------------------------------------------------------------------------------- /mobile/ios/Resources/Hints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/Hints.html -------------------------------------------------------------------------------- /mobile/ios/Resources/Icon-iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/Icon-iPad.png -------------------------------------------------------------------------------- /mobile/ios/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/Icon.png -------------------------------------------------------------------------------- /mobile/ios/Resources/Icon_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/Icon_2x.png -------------------------------------------------------------------------------- /mobile/ios/Resources/Info.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/Info.pdf -------------------------------------------------------------------------------- /mobile/ios/Resources/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/Info.png -------------------------------------------------------------------------------- /mobile/ios/Resources/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/MainWindow.xib -------------------------------------------------------------------------------- /mobile/ios/Resources/OTPAuthAboutController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/OTPAuthAboutController.xib -------------------------------------------------------------------------------- /mobile/ios/Resources/OTPAuthURLEntryController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/OTPAuthURLEntryController.xib -------------------------------------------------------------------------------- /mobile/ios/Resources/OTPTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/OTPTableViewCell.xib -------------------------------------------------------------------------------- /mobile/ios/Resources/OTPWelcomeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/OTPWelcomeViewController.xib -------------------------------------------------------------------------------- /mobile/ios/Resources/PlusButton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/PlusButton.pdf -------------------------------------------------------------------------------- /mobile/ios/Resources/PlusButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/PlusButton.png -------------------------------------------------------------------------------- /mobile/ios/Resources/Refresh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/Refresh.pdf -------------------------------------------------------------------------------- /mobile/ios/Resources/Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/Refresh.png -------------------------------------------------------------------------------- /mobile/ios/Resources/RootViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/RootViewController.xib -------------------------------------------------------------------------------- /mobile/ios/Resources/ar.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ar.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/bg.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/bg.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/ca.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ca.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/close.pdf -------------------------------------------------------------------------------- /mobile/ios/Resources/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/close.png -------------------------------------------------------------------------------- /mobile/ios/Resources/cs.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/cs.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/da.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/da.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/de.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/de.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/de_AT.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/de_AT.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/de_AT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/de_AT.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/de_CH.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/de_CH.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/de_CH.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/de_CH.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/el.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/el.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/en_GB.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/en_GB.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/en_GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/en_GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/en_IE.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/en_IE.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/en_IE.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/en_IE.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/en_IN.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/en_IN.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/en_IN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/en_IN.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/en_SG.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/en_SG.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/en_SG.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/en_SG.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/en_ZA.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/en_ZA.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/en_ZA.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/en_ZA.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/es.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/es.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/fi.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/fi.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/fil.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/fil.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/fil.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/fil.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/fr.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/fr.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/fr_CH.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/fr_CH.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/fr_CH.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/fr_CH.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/gsw.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/gsw.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/gsw.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/gsw.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/he.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/he.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/hi.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/hi.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/hr.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/hr.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/hu.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/hu.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/iOSIcon-Auth.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/iOSIcon-Auth.psd -------------------------------------------------------------------------------- /mobile/ios/Resources/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/iTunesArtwork.png -------------------------------------------------------------------------------- /mobile/ios/Resources/id.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/id.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/in.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/in.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/in.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/in.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/it.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/it.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/iw.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/iw.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/iw.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/iw.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/ja.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ja.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/ko.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ko.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/ln.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ln.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/ln.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ln.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/lt.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/lt.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/lt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/lt.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/lv.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/lv.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/lv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/lv.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/mo.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/mo.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/mo.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/mo.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/nl.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/nl.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/no.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/no.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/no.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/no.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/pl.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/pl.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/pt.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/pt.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/pt_BR.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/pt_BR.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/pt_BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/pt_BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/pt_PT.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/pt_PT.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/pt_PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/pt_PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/ro.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ro.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/ru.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ru.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/sk.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/sk.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/sl.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/sl.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/sl.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/sr.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/sr.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/sr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/sr.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/strongauth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/strongauth.pdf -------------------------------------------------------------------------------- /mobile/ios/Resources/sv.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/sv.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/th.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/th.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/tl.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/tl.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/tl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/tl.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/tr.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/tr.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/uk.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/uk.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/vi.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/vi.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/zh.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/zh.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/zh.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/zh.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/zh_CN.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/zh_CN.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/zh_HK.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/zh_HK.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/zh_HK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/zh_HK.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/Resources/zh_TW.lproj/LegalNotices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/zh_TW.lproj/LegalNotices.html -------------------------------------------------------------------------------- /mobile/ios/Resources/zh_TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/Resources/zh_TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /mobile/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/google-authenticator/HEAD/mobile/ios/main.m --------------------------------------------------------------------------------