<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://en.zaoniao.it/index.php?action=history&amp;feed=atom&amp;title=Master_Password</id>
	<title>Master Password - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://en.zaoniao.it/index.php?action=history&amp;feed=atom&amp;title=Master_Password"/>
	<link rel="alternate" type="text/html" href="http://en.zaoniao.it/index.php?title=Master_Password&amp;action=history"/>
	<updated>2026-05-15T09:09:47Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>http://en.zaoniao.it/index.php?title=Master_Password&amp;diff=5846&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;'''Master Password''' is an algorithm designed by Maarten Billemont for creating unique passwords in a reproducible manner. It differs from traditional [[password manager]...&quot;</title>
		<link rel="alternate" type="text/html" href="http://en.zaoniao.it/index.php?title=Master_Password&amp;diff=5846&amp;oldid=prev"/>
		<updated>2019-06-13T13:32:50Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Master Password&amp;#039;&amp;#039;&amp;#039; is an algorithm designed by Maarten Billemont for creating unique &lt;a href=&quot;/Password&quot; title=&quot;Password&quot;&gt;passwords&lt;/a&gt; in a reproducible manner. It differs from traditional [[password manager]...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;'''Master Password''' is an algorithm designed by Maarten Billemont for creating unique [[password]]s in a reproducible manner. It differs from traditional [[password manager]]s in that the passwords are not stored on disk or in the cloud, but are recreated every time by using information entered by the user; most importantly, their full name, a master password, and a unique name for the service the password is intended for.&lt;br /&gt;
&lt;br /&gt;
* '''name''': The user's full name, used as a [[Salt (cryptography)|salt]]. The user's full name is chosen as it provides a sufficiently high level of entropy, while being unlikely to be forgotten.&lt;br /&gt;
* '''master_password''': The secret used for generating the master key.&lt;br /&gt;
* '''site_name''': A unique name for the service the password is intended for. Usually, the bare domain name is a good choice.&lt;br /&gt;
* '''counter''': An integer that can be incremented when the service requests a new password. By default, it is 0.&lt;br /&gt;
* '''password_type''': The password type defines the length and the constitution of the resulting password, see below.&lt;br /&gt;
&lt;br /&gt;
=== Master key generation ===&lt;br /&gt;
&lt;br /&gt;
The master key is a global 64-byte secret key generated from the user's secret master password and salted by their full name. The salt is used to avoid attacks based on [[rainbow tables]]. The [[scrypt]] algorithm, an intentionally slow [[key derivation function]], is used for generating the master key to make a [[brute-force attack]] infeasible.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
salt = &amp;quot;com.lyndir.masterpassword&amp;quot; + length(name) + name&lt;br /&gt;
master_key = scrypt(master_password, salt, 32768, 8, 2, 64)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Template seed generation ===&lt;br /&gt;
&lt;br /&gt;
The template seed is a site-specific secret in binary form, generated from the master key, the site name and the counter using the [[HMAC-SHA256]] algorithm. It is later converted to a character string using the password templates.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
seed = hmac_sha256(master_key, &amp;quot;com.lyndir.masterpassword&amp;quot; + length(site_name) + site_name + counter)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Password generation ===&lt;br /&gt;
&lt;br /&gt;
The binary template seed is then converted to one of six available password types. The default type is the ''Maximum Security Password'', others can be selected if the service's password policy does not allow passwords of that format:&lt;br /&gt;
&lt;br /&gt;
* Maximum Security Password (20 [[ASCII printable characters]])&lt;br /&gt;
* Long Password (14 ASCII printable characters)&lt;br /&gt;
* Medium Password (8 ASCII printable characters)&lt;br /&gt;
* Short Password (4 ASCII printable characters)&lt;br /&gt;
* Basic Password (8 alphanumeric characters)&lt;br /&gt;
* PIN (4 digits)&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
Billemont also created multiple free software implementations of the Master Password algorithm, licensed under the [[GPLv3]]. These include apps for iPhone/iPad, Mac OS X, and Android, as well as a graphical desktop application written in [[Java (programming language)|Java]], a [[command-line]] application written in [[C (programming language)|C]], and a web client written in [[JavaScript]]. The iOS implementation was first released in 2012.&lt;br /&gt;
&lt;br /&gt;
==Source==&lt;br /&gt;
&lt;br /&gt;
[http://wikipedia.org/ http://wikipedia.org/]&lt;br /&gt;
&lt;br /&gt;
[[Category:Cryptographic algorithms]]&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
==See Also on BitcoinWiki==&lt;br /&gt;
* [[ORCA]]&lt;br /&gt;
* [[Beat]]&lt;br /&gt;
* [[Fluzcoin]]&lt;br /&gt;
* [[Hala]]&lt;br /&gt;
* [[Plentix]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
		
	</entry>
</feed>