Difference between revisions of "Random Lock Key"
From SQRLauth.net
Adam Comley (Talk | contribs) (Created page with "The RLK is a random Curve25519 key generated when an Identity Master Key is first associated with a Server. It is used to create the Verify Unlock Key and Server Un...") |
Adam Comley (Talk | contribs) |
||
Line 5: | Line 5: | ||
RLK = CurvePrivateKey( random() ); | RLK = CurvePrivateKey( random() ); | ||
</pre> | </pre> | ||
+ | |||
+ | [[Category:Keys]] |
Revision as of 21:19, 22 March 2015
The RLK is a random Curve25519 key generated when an Identity Master Key is first associated with a Server. It is used to create the Verify Unlock Key and Server Unlock Key, which are sent to the server during association.
Creation
RLK = CurvePrivateKey( random() );