mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2024-12-20 13:24:35 -05:00
Move password managers to separate file
This commit is contained in:
parent
d2dcae80db
commit
e22cccf9e7
47
_includes/sections/password-managers.html
Normal file
47
_includes/sections/password-managers.html
Normal file
@ -0,0 +1,47 @@
|
||||
<h1 id="pw" class="anchor"><a href="#pw"><i class="fas fa-link anchor-icon"></i></a> Password Manager Software</h1>
|
||||
|
||||
<div class="alert alert-warning" role="alert">
|
||||
<strong>If you are currently using a password manager software like 1Password, LastPass, Roboform or iCloud Keychain, you should pick an alternative here.</strong>
|
||||
</div>
|
||||
|
||||
<div class="row mb-2">
|
||||
|
||||
{% include card.html color="success"
|
||||
title="KeePass / KeePassXC - Local"
|
||||
image="assets/img/tools/KeePass.png"
|
||||
url="https://keepass.info/download.html"
|
||||
website="keepass.info"
|
||||
footer="OS: Windows, macOS, Linux, iOS, Android, BSD."
|
||||
description='KeePass is a free open source password manager, which helps you to manage your passwords in a secure way. All passwords in one database, which is locked with one
|
||||
master key or a key file. The databases are encrypted using the best and most secure encryption algorithms currently known: AES and Twofish. See also: <a href="https://keepassxc.org/">KeePassXC</a> with official native cross-platform support for Windows/macOS/Linux.'
|
||||
%}
|
||||
{% include card.html color="primary"
|
||||
title="LessPass - Browser"
|
||||
image="assets/img/tools/LessPass.png"
|
||||
url="https://lesspass.com/"
|
||||
footer="OS: Windows, macOS, Linux, Android."
|
||||
description="LessPass is a free and open source password manager that generates unique passwords for websites, email accounts, or anything else based on a master password and information you know. No sync needed. Uses PBKDF2 and SHA-256. It's advised to use the browser addons for more security."
|
||||
%} </div>
|
||||
|
||||
<h3>Worth Mentioning</h3>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://masterpassword.app">Master Password</a> - Master Password is based on an ingenious password generation algorithm that guarantees your passwords can never be lost. Its passwords aren't stored: they are generated on-demand from your name, the site and your master password. No syncing, backups or internet access needed.
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="https://pwsafe.org/">Password Safe</a> - Whether the answer is one or hundreds, Password Safe allows you to safely and easily create a secured and encrypted username/password list. With Password Safe all you have to do is create and remember
|
||||
a single "Master Password" of your choice in order to unlock and access your entire username/password list.
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="https://bitwarden.com/">Bitwarden</a> - Open-source, encrypted, cloud password manager. Just be sure to disable Google Analytics if you decide to use it.
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Related Information</h3>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://www.youtube.com/watch?v=yzGzB-yYKcc">Edward Snowden on Passwords - YouTube</a></li>
|
||||
</ul>
|
43
index.html
43
index.html
@ -45,48 +45,7 @@ layout: default
|
||||
|
||||
{% include sections/file-sync.html %}
|
||||
|
||||
<h1 id="pw" class="anchor"><a href="#pw"><i class="fas fa-link anchor-icon"></i></a> Password Manager Software</h1>
|
||||
<div class="alert alert-warning" role="alert">
|
||||
<strong>If you are currently using a password manager software like 1Password, LastPass, Roboform or iCloud Keychain, you should pick an alternative here.</strong>
|
||||
</div>
|
||||
<div class="row mb-2">
|
||||
|
||||
{% include card.html color="success"
|
||||
title="KeePass / KeePassXC - Local"
|
||||
image="assets/img/tools/KeePass.png"
|
||||
url="https://keepass.info/download.html"
|
||||
website="keepass.info"
|
||||
footer="OS: Windows, macOS, Linux, iOS, Android, BSD."
|
||||
description='KeePass is a free open source password manager, which helps you to manage your passwords in a secure way. All passwords in one database, which is locked with one
|
||||
master key or a key file. The databases are encrypted using the best and most secure encryption algorithms currently known: AES and Twofish. See also: <a href="https://keepassxc.org/">KeePassXC</a> with official native cross-platform support for Windows/macOS/Linux.'
|
||||
%}
|
||||
{% include card.html color="primary"
|
||||
title="LessPass - Browser"
|
||||
image="assets/img/tools/LessPass.png"
|
||||
url="https://lesspass.com/"
|
||||
footer="OS: Windows, macOS, Linux, Android."
|
||||
description="LessPass is a free and open source password manager that generates unique passwords for websites, email accounts, or anything else based on a master password and information you know. No sync needed. Uses PBKDF2 and SHA-256. It's advised to use the browser addons for more security."
|
||||
%} </div>
|
||||
<h3>Worth Mentioning</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://masterpassword.app">Master Password</a> - Master Password is based on an ingenious password generation algorithm that guarantees your passwords can never be lost. Its passwords aren't stored: they are generated on-demand from your name, the site and your master password. No syncing, backups or internet access needed.
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="https://pwsafe.org/">Password Safe</a> - Whether the answer is one or hundreds, Password Safe allows you to safely and easily create a secured and encrypted username/password list. With Password Safe all you have to do is create and remember
|
||||
a single "Master Password" of your choice in order to unlock and access your entire username/password list.
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="https://bitwarden.com/">Bitwarden</a> - Open-source, encrypted, cloud password manager. Just be sure to disable Google Analytics if you decide to use it.
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Related Information</h3>
|
||||
<ul>
|
||||
<li><a href="https://www.youtube.com/watch?v=yzGzB-yYKcc">Edward Snowden on Passwords - YouTube</a></li>
|
||||
</ul>
|
||||
{% include sections/password-managers.html %}
|
||||
|
||||
<h1 id="calendar_contacts" class="anchor"><a href="#calendar_contacts"><i class="fas fa-link anchor-icon"></i></a> Calendar and Contacts Sync</h1>
|
||||
<div class="alert alert-warning" role="alert">
|
||||
|
Loading…
Reference in New Issue
Block a user