Skip to content

Commit

Permalink
strings.digest() now uses upper case base16 encoding.
Browse files Browse the repository at this point in the history
  • Loading branch information
hns committed May 24, 2011
1 parent 7da6a81 commit d3e814d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/demo.js
Expand Up @@ -51,7 +51,7 @@ app.env("profiler").configure("responselog", "profiler", "error");
var admin = new Application(dummyPage("admin zone"));
admin.configure("basicauth");
// add basic authentication, password is "secret"
admin.basicauth("/", "admin", "e5e9fa1ba31ecd1ae84f75caaa474f3a663f05f4");
admin.basicauth("/", "admin", "E5E9FA1BA31ECD1AE84F75CAAA474F3A663F05F4");
app.mount("/admin", admin);

// helper for creating simple dummy pages
Expand Down

0 comments on commit d3e814d

Please sign in to comment.