Changeset 11b391b
- Timestamp:
- May 18, 2019 2:14:08 PM (22 months ago)
- Branches:
- master
- Children:
- 03bd3e2
- Parents:
- a6e6d29d
- Location:
- apps/i2pcontrol/java
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2pcontrol/java/com/thetransactioncompany/jsonrpc2/package-info.java
ra6e6d29d r11b391b 14 14 * out as it tends to confuse users (judging by posts in the JSON-RPC forum). 15 15 * 16 * <p>See the <a href="http://www.jsonrpc.org/specification"> </a>JSON-RPC 2.016 * <p>See the <a href="http://www.jsonrpc.org/specification">JSON-RPC 2.0 17 17 * specification</a> for more information or write to the 18 18 * <a href="https://groups.google.com/forum/#!forum/json-rpc">user group</a> if -
apps/i2pcontrol/java/org/mindrot/jbcrypt/BCrypt.java
ra6e6d29d r11b391b 33 33 * <p> 34 34 * <code> 35 * String pw_hash = BCrypt.hashpw(plain_password, BCrypt.gensalt()); <br />35 * String pw_hash = BCrypt.hashpw(plain_password, BCrypt.gensalt()); 36 36 * </code> 37 37 * <p> … … 40 40 * <p> 41 41 * <code> 42 * if (BCrypt.checkpw(candidate_password, stored_hash)) <br />43 * System.out.println("It matches"); <br />44 * else <br />45 * System.out.println("It does not match"); <br />42 * if (BCrypt.checkpw(candidate_password, stored_hash)) 43 * System.out.println("It matches"); 44 * else 45 * System.out.println("It does not match"); 46 46 * </code> 47 47 * <p> … … 50 50 * <p> 51 51 * <code> 52 * String strong_salt = BCrypt.gensalt(10) <br />53 * String stronger_salt = BCrypt.gensalt(12) <br />52 * String strong_salt = BCrypt.gensalt(10) 53 * String stronger_salt = BCrypt.gensalt(12) 54 54 * </code> 55 55 * <p>
Note: See TracChangeset
for help on using the changeset viewer.