├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── actions │ ├── prepare-app-repo │ │ └── action.yml │ └── prepare-fortify-setup-repo │ │ └── action.yml └── workflows │ └── pipeline.yml ├── .gitignore ├── .yarnrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── locale ├── cs.json ├── de.json ├── el.json ├── en.json ├── es.json ├── fr.json ├── it.json ├── ja.json ├── nl.json ├── pt.json ├── ru.json ├── tr.json └── zh.json ├── package.json ├── scripts ├── postinstall.ts ├── sign_data │ ├── crypto.ts │ ├── index.ts │ ├── keys.ts │ └── types.d.ts ├── utils.ts ├── webpack.base.config.js ├── webpack.main.config.js └── webpack.renderer.config.js ├── src ├── main │ ├── application.ts │ ├── config.ts │ ├── constants │ │ ├── design.ts │ │ ├── files.ts │ │ ├── index.ts │ │ ├── links.ts │ │ └── third_party.ts │ ├── container.ts │ ├── crypto.ts │ ├── errors.ts │ ├── firefox_providers.ts │ ├── index.ts │ ├── ipc_messages.ts │ ├── jws.ts │ ├── l10n.ts │ ├── logger │ │ ├── analytics.ts │ │ ├── analytics_transport.ts │ │ └── index.ts │ ├── server.ts │ ├── server_storage.ts │ ├── services │ │ ├── index.ts │ │ └── ssl │ │ │ ├── firefox.ts │ │ │ ├── generator.ts │ │ │ ├── index.ts │ │ │ ├── installer.ts │ │ │ ├── nss.ts │ │ │ └── pem_converter.ts │ ├── tray │ │ ├── base_template.ts │ │ ├── development_template.ts │ │ └── index.ts │ ├── types.ts │ ├── updater.ts │ ├── utils │ │ ├── index.ts │ │ ├── printf.ts │ │ └── request.ts │ └── windows │ │ ├── browser_window.ts │ │ ├── dialogs_storage.ts │ │ ├── index.ts │ │ └── windows_controller.ts ├── renderer │ ├── app.tsx │ ├── components │ │ ├── document_title.tsx │ │ ├── intl │ │ │ ├── index.ts │ │ │ ├── intl_context.tsx │ │ │ └── intl_provider.tsx │ │ ├── layouts │ │ │ ├── dialog_layout.tsx │ │ │ ├── index.ts │ │ │ ├── modal_layout.tsx │ │ │ └── styles │ │ │ │ ├── dialog_layout.sass │ │ │ │ └── modal_layout.sass │ │ ├── window_event.tsx │ │ └── window_provider.tsx │ ├── constants │ │ ├── index.ts │ │ └── iso_langs.ts │ ├── containers │ │ ├── index.ts │ │ ├── key_pin │ │ │ ├── container.tsx │ │ │ ├── index.tsx │ │ │ └── styles │ │ │ │ └── container.sass │ │ ├── message │ │ │ ├── container.tsx │ │ │ ├── index.tsx │ │ │ └── styles │ │ │ │ └── container.sass │ │ ├── p11_pin │ │ │ ├── container.tsx │ │ │ ├── index.tsx │ │ │ └── styles │ │ │ │ └── container.sass │ │ └── preferences │ │ │ ├── about.tsx │ │ │ ├── container.tsx │ │ │ ├── index.tsx │ │ │ ├── settings.tsx │ │ │ ├── sites.tsx │ │ │ ├── styles │ │ │ ├── about.sass │ │ │ ├── container.sass │ │ │ ├── settings.sass │ │ │ ├── sites.sass │ │ │ └── updates.sass │ │ │ ├── types.d.ts │ │ │ └── updates.tsx │ └── index.tsx ├── resources │ ├── new_card.tmpl │ └── osx-ssl.sh ├── shared │ ├── constants │ │ ├── index.ts │ │ └── windows.ts │ └── index.ts └── static │ ├── icons │ ├── attention_icon.svg │ ├── chrome.png │ ├── edge.png │ ├── error_icon.svg │ ├── firefox.png │ ├── github_icon.svg │ ├── globe_icon.svg │ ├── ie.png │ ├── logo.svg │ ├── question_icon.svg │ ├── safari.png │ ├── search_icon.svg │ ├── token_icon.svg │ ├── tray │ │ ├── mac │ │ │ └── icon.icns │ │ ├── png │ │ │ ├── icon.png │ │ │ ├── icon@1.5x.png │ │ │ ├── icon@16x.png │ │ │ ├── icon@2x.png │ │ │ ├── icon@32x.png │ │ │ ├── icon@3x.png │ │ │ ├── icon@4x.png │ │ │ ├── icon@64x.png │ │ │ └── icon@8x.png │ │ └── win │ │ │ └── icon.ico │ ├── tray_notification │ │ └── png │ │ │ ├── icon.png │ │ │ ├── icon@1.5x.png │ │ │ ├── icon@16x.png │ │ │ ├── icon@2x.png │ │ │ ├── icon@32x.png │ │ │ ├── icon@3x.png │ │ │ ├── icon@4x.png │ │ │ ├── icon@64x.png │ │ │ └── icon@8x.png │ └── twitter_icon.svg │ └── index.html ├── test ├── nss.ts └── resources │ └── ca.pem ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/actions/prepare-app-repo/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/.github/actions/prepare-app-repo/action.yml -------------------------------------------------------------------------------- /.github/actions/prepare-fortify-setup-repo/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/.github/actions/prepare-fortify-setup-repo/action.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/.github/workflows/pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/.yarnrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/README.md -------------------------------------------------------------------------------- /locale/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/cs.json -------------------------------------------------------------------------------- /locale/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/de.json -------------------------------------------------------------------------------- /locale/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/el.json -------------------------------------------------------------------------------- /locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/en.json -------------------------------------------------------------------------------- /locale/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/es.json -------------------------------------------------------------------------------- /locale/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/fr.json -------------------------------------------------------------------------------- /locale/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/it.json -------------------------------------------------------------------------------- /locale/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/ja.json -------------------------------------------------------------------------------- /locale/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/nl.json -------------------------------------------------------------------------------- /locale/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/pt.json -------------------------------------------------------------------------------- /locale/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/ru.json -------------------------------------------------------------------------------- /locale/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/tr.json -------------------------------------------------------------------------------- /locale/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/locale/zh.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/package.json -------------------------------------------------------------------------------- /scripts/postinstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/scripts/postinstall.ts -------------------------------------------------------------------------------- /scripts/sign_data/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/scripts/sign_data/crypto.ts -------------------------------------------------------------------------------- /scripts/sign_data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/scripts/sign_data/index.ts -------------------------------------------------------------------------------- /scripts/sign_data/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/scripts/sign_data/keys.ts -------------------------------------------------------------------------------- /scripts/sign_data/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/scripts/sign_data/types.d.ts -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/scripts/utils.ts -------------------------------------------------------------------------------- /scripts/webpack.base.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/scripts/webpack.base.config.js -------------------------------------------------------------------------------- /scripts/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/scripts/webpack.main.config.js -------------------------------------------------------------------------------- /scripts/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/scripts/webpack.renderer.config.js -------------------------------------------------------------------------------- /src/main/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/application.ts -------------------------------------------------------------------------------- /src/main/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/config.ts -------------------------------------------------------------------------------- /src/main/constants/design.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/constants/design.ts -------------------------------------------------------------------------------- /src/main/constants/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/constants/files.ts -------------------------------------------------------------------------------- /src/main/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/constants/index.ts -------------------------------------------------------------------------------- /src/main/constants/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/constants/links.ts -------------------------------------------------------------------------------- /src/main/constants/third_party.ts: -------------------------------------------------------------------------------- 1 | export const MIXPANEL_TOKEN = '124773c76c7622781c7bbef371a07c93'; 2 | -------------------------------------------------------------------------------- /src/main/container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/container.ts -------------------------------------------------------------------------------- /src/main/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/crypto.ts -------------------------------------------------------------------------------- /src/main/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/errors.ts -------------------------------------------------------------------------------- /src/main/firefox_providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/firefox_providers.ts -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/ipc_messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/ipc_messages.ts -------------------------------------------------------------------------------- /src/main/jws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/jws.ts -------------------------------------------------------------------------------- /src/main/l10n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/l10n.ts -------------------------------------------------------------------------------- /src/main/logger/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/logger/analytics.ts -------------------------------------------------------------------------------- /src/main/logger/analytics_transport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/logger/analytics_transport.ts -------------------------------------------------------------------------------- /src/main/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/logger/index.ts -------------------------------------------------------------------------------- /src/main/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/server.ts -------------------------------------------------------------------------------- /src/main/server_storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/server_storage.ts -------------------------------------------------------------------------------- /src/main/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ssl'; 2 | -------------------------------------------------------------------------------- /src/main/services/ssl/firefox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/services/ssl/firefox.ts -------------------------------------------------------------------------------- /src/main/services/ssl/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/services/ssl/generator.ts -------------------------------------------------------------------------------- /src/main/services/ssl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/services/ssl/index.ts -------------------------------------------------------------------------------- /src/main/services/ssl/installer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/services/ssl/installer.ts -------------------------------------------------------------------------------- /src/main/services/ssl/nss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/services/ssl/nss.ts -------------------------------------------------------------------------------- /src/main/services/ssl/pem_converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/services/ssl/pem_converter.ts -------------------------------------------------------------------------------- /src/main/tray/base_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/tray/base_template.ts -------------------------------------------------------------------------------- /src/main/tray/development_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/tray/development_template.ts -------------------------------------------------------------------------------- /src/main/tray/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/tray/index.ts -------------------------------------------------------------------------------- /src/main/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/types.ts -------------------------------------------------------------------------------- /src/main/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/updater.ts -------------------------------------------------------------------------------- /src/main/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/utils/index.ts -------------------------------------------------------------------------------- /src/main/utils/printf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/utils/printf.ts -------------------------------------------------------------------------------- /src/main/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/utils/request.ts -------------------------------------------------------------------------------- /src/main/windows/browser_window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/windows/browser_window.ts -------------------------------------------------------------------------------- /src/main/windows/dialogs_storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/windows/dialogs_storage.ts -------------------------------------------------------------------------------- /src/main/windows/index.ts: -------------------------------------------------------------------------------- 1 | export * from './windows_controller'; 2 | -------------------------------------------------------------------------------- /src/main/windows/windows_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/main/windows/windows_controller.ts -------------------------------------------------------------------------------- /src/renderer/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/app.tsx -------------------------------------------------------------------------------- /src/renderer/components/document_title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/components/document_title.tsx -------------------------------------------------------------------------------- /src/renderer/components/intl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/components/intl/index.ts -------------------------------------------------------------------------------- /src/renderer/components/intl/intl_context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/components/intl/intl_context.tsx -------------------------------------------------------------------------------- /src/renderer/components/intl/intl_provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/components/intl/intl_provider.tsx -------------------------------------------------------------------------------- /src/renderer/components/layouts/dialog_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/components/layouts/dialog_layout.tsx -------------------------------------------------------------------------------- /src/renderer/components/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/components/layouts/index.ts -------------------------------------------------------------------------------- /src/renderer/components/layouts/modal_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/components/layouts/modal_layout.tsx -------------------------------------------------------------------------------- /src/renderer/components/layouts/styles/dialog_layout.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/components/layouts/styles/dialog_layout.sass -------------------------------------------------------------------------------- /src/renderer/components/layouts/styles/modal_layout.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/components/layouts/styles/modal_layout.sass -------------------------------------------------------------------------------- /src/renderer/components/window_event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/components/window_event.tsx -------------------------------------------------------------------------------- /src/renderer/components/window_provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/components/window_provider.tsx -------------------------------------------------------------------------------- /src/renderer/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from './iso_langs'; 2 | -------------------------------------------------------------------------------- /src/renderer/constants/iso_langs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/constants/iso_langs.ts -------------------------------------------------------------------------------- /src/renderer/containers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/index.ts -------------------------------------------------------------------------------- /src/renderer/containers/key_pin/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/key_pin/container.tsx -------------------------------------------------------------------------------- /src/renderer/containers/key_pin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/key_pin/index.tsx -------------------------------------------------------------------------------- /src/renderer/containers/key_pin/styles/container.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/key_pin/styles/container.sass -------------------------------------------------------------------------------- /src/renderer/containers/message/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/message/container.tsx -------------------------------------------------------------------------------- /src/renderer/containers/message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/message/index.tsx -------------------------------------------------------------------------------- /src/renderer/containers/message/styles/container.sass: -------------------------------------------------------------------------------- 1 | .text 2 | margin-bottom: 8px 3 | -------------------------------------------------------------------------------- /src/renderer/containers/p11_pin/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/p11_pin/container.tsx -------------------------------------------------------------------------------- /src/renderer/containers/p11_pin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/p11_pin/index.tsx -------------------------------------------------------------------------------- /src/renderer/containers/p11_pin/styles/container.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/p11_pin/styles/container.sass -------------------------------------------------------------------------------- /src/renderer/containers/preferences/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/about.tsx -------------------------------------------------------------------------------- /src/renderer/containers/preferences/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/container.tsx -------------------------------------------------------------------------------- /src/renderer/containers/preferences/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/index.tsx -------------------------------------------------------------------------------- /src/renderer/containers/preferences/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/settings.tsx -------------------------------------------------------------------------------- /src/renderer/containers/preferences/sites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/sites.tsx -------------------------------------------------------------------------------- /src/renderer/containers/preferences/styles/about.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/styles/about.sass -------------------------------------------------------------------------------- /src/renderer/containers/preferences/styles/container.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/styles/container.sass -------------------------------------------------------------------------------- /src/renderer/containers/preferences/styles/settings.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/styles/settings.sass -------------------------------------------------------------------------------- /src/renderer/containers/preferences/styles/sites.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/styles/sites.sass -------------------------------------------------------------------------------- /src/renderer/containers/preferences/styles/updates.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/styles/updates.sass -------------------------------------------------------------------------------- /src/renderer/containers/preferences/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/types.d.ts -------------------------------------------------------------------------------- /src/renderer/containers/preferences/updates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/containers/preferences/updates.tsx -------------------------------------------------------------------------------- /src/renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/renderer/index.tsx -------------------------------------------------------------------------------- /src/resources/new_card.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/resources/new_card.tmpl -------------------------------------------------------------------------------- /src/resources/osx-ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/resources/osx-ssl.sh -------------------------------------------------------------------------------- /src/shared/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from './windows'; 2 | -------------------------------------------------------------------------------- /src/shared/constants/windows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/shared/constants/windows.ts -------------------------------------------------------------------------------- /src/shared/index.ts: -------------------------------------------------------------------------------- 1 | export * from './constants'; 2 | -------------------------------------------------------------------------------- /src/static/icons/attention_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/attention_icon.svg -------------------------------------------------------------------------------- /src/static/icons/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/chrome.png -------------------------------------------------------------------------------- /src/static/icons/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/edge.png -------------------------------------------------------------------------------- /src/static/icons/error_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/error_icon.svg -------------------------------------------------------------------------------- /src/static/icons/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/firefox.png -------------------------------------------------------------------------------- /src/static/icons/github_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/github_icon.svg -------------------------------------------------------------------------------- /src/static/icons/globe_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/globe_icon.svg -------------------------------------------------------------------------------- /src/static/icons/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/ie.png -------------------------------------------------------------------------------- /src/static/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/logo.svg -------------------------------------------------------------------------------- /src/static/icons/question_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/question_icon.svg -------------------------------------------------------------------------------- /src/static/icons/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/safari.png -------------------------------------------------------------------------------- /src/static/icons/search_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/search_icon.svg -------------------------------------------------------------------------------- /src/static/icons/token_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/token_icon.svg -------------------------------------------------------------------------------- /src/static/icons/tray/mac/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray/mac/icon.icns -------------------------------------------------------------------------------- /src/static/icons/tray/png/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray/png/icon.png -------------------------------------------------------------------------------- /src/static/icons/tray/png/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray/png/icon@1.5x.png -------------------------------------------------------------------------------- /src/static/icons/tray/png/icon@16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray/png/icon@16x.png -------------------------------------------------------------------------------- /src/static/icons/tray/png/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray/png/icon@2x.png -------------------------------------------------------------------------------- /src/static/icons/tray/png/icon@32x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray/png/icon@32x.png -------------------------------------------------------------------------------- /src/static/icons/tray/png/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray/png/icon@3x.png -------------------------------------------------------------------------------- /src/static/icons/tray/png/icon@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray/png/icon@4x.png -------------------------------------------------------------------------------- /src/static/icons/tray/png/icon@64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray/png/icon@64x.png -------------------------------------------------------------------------------- /src/static/icons/tray/png/icon@8x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray/png/icon@8x.png -------------------------------------------------------------------------------- /src/static/icons/tray/win/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray/win/icon.ico -------------------------------------------------------------------------------- /src/static/icons/tray_notification/png/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray_notification/png/icon.png -------------------------------------------------------------------------------- /src/static/icons/tray_notification/png/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray_notification/png/icon@1.5x.png -------------------------------------------------------------------------------- /src/static/icons/tray_notification/png/icon@16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray_notification/png/icon@16x.png -------------------------------------------------------------------------------- /src/static/icons/tray_notification/png/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray_notification/png/icon@2x.png -------------------------------------------------------------------------------- /src/static/icons/tray_notification/png/icon@32x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray_notification/png/icon@32x.png -------------------------------------------------------------------------------- /src/static/icons/tray_notification/png/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray_notification/png/icon@3x.png -------------------------------------------------------------------------------- /src/static/icons/tray_notification/png/icon@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray_notification/png/icon@4x.png -------------------------------------------------------------------------------- /src/static/icons/tray_notification/png/icon@64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray_notification/png/icon@64x.png -------------------------------------------------------------------------------- /src/static/icons/tray_notification/png/icon@8x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/tray_notification/png/icon@8x.png -------------------------------------------------------------------------------- /src/static/icons/twitter_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/icons/twitter_icon.svg -------------------------------------------------------------------------------- /src/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/src/static/index.html -------------------------------------------------------------------------------- /test/nss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/test/nss.ts -------------------------------------------------------------------------------- /test/resources/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/test/resources/ca.pem -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeculiarVentures/fortify/HEAD/yarn.lock --------------------------------------------------------------------------------