User Tools

Site Tools


built_in:crypt

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
built_in:crypt [2015/03/20 14:12]
octazid [Table]
built_in:crypt [2017/07/01 14:27] (current)
Line 20: Line 20:
 If it does not match, the app does not continue. If it does not match, the app does not continue.
 <code JavaScript md5.js> <code JavaScript md5.js>
- 
 //Called when application is started. //Called when application is started.
 function OnStart() function OnStart()
 { {
-    var crypt = app.CreateCrypt(); 
     var chk = app.LoadText("hash","unset");     var chk = app.LoadText("hash","unset");
-    var pass = prompt("","Please enter password");+    var pass = prompt("Please enter password","");
     if (pass==null) app.Exit();     if (pass==null) app.Exit();
 +    var crypt = app.CreateCrypt();
     var md5 = crypt.Hash( pass, "MD5" );     var md5 = crypt.Hash( pass, "MD5" );
 +    md5 = md5.substr(0,22);
     if (chk == "unset") app.SaveText("hash", md5)     if (chk == "unset") app.SaveText("hash", md5)
-    else if(chk != md5) app.Exit(); +    else if(chk != md5) 
 +    { 
 +        app.ShowPopup("Incorrect password"); 
 +        app.Exit(); 
 +    } 
 + 
     //Create a layout with objects vertically centered.     //Create a layout with objects vertically centered.
     lay = app.CreateLayout( "linear", "VCenter,FillXY" );         lay = app.CreateLayout( "linear", "VCenter,FillXY" );    
 + 
     //Create a text label and add it to layout.     //Create a text label and add it to layout.
-    txt = app.CreateText( "Hello" );+    txt = app.CreateText( "Welcome" );
     txt.SetTextSize( 32 );     txt.SetTextSize( 32 );
     lay.AddChild( txt );     lay.AddChild( txt );
built_in/crypt.1426860774.txt.gz · Last modified: 2015/03/20 22:12 (external edit)