- Timestamp:
- Jan 26, 2017 9:55:04 PM (4 years ago)
- Branches:
- master
- Children:
- 5db89d8
- Parents:
- d196047
- Location:
- core/java/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
core/java/src/gnu/getopt/Getopt.java
rd196047 rb970912 337 337 * } 338 338 * // 339 * for (int i = g.getOptind(); i <argv.length ; i++)339 * for (int i = g.getOptind(); i < argv.length ; i++) 340 340 * System.out.println("Non option argv element: " + argv[i] + "\n"); 341 341 * </pre> -
core/java/src/net/i2p/client/naming/NamingService.java
rd196047 rb970912 535 535 * 536 536 * @param hostname must be {52 chars}.b32.i2p 537 * @param timeout in seconds; <= 0 means use router default537 * @param timeout in seconds; <= 0 means use router default 538 538 * @return dest or null 539 539 * @since 0.8.7 … … 547 547 * This implementation returns null. 548 548 * 549 * @param timeout in seconds; <= 0 means use router default549 * @param timeout in seconds; <= 0 means use router default 550 550 * @return dest or null 551 551 * @since 0.8.7 -
core/java/src/net/i2p/crypto/ElGamalAESEngine.java
rd196047 rb970912 430 430 * In the router, we always use garlic messages. A garlic message with a single 431 431 * clove and zero data is about 84 bytes, so that's 123 bytes minimum. So any paddingSize 432 * <= 128 is a no-op as every message will be at least 128 bytes432 * <= 128 is a no-op as every message will be at least 128 bytes 433 433 * (Streaming, if used, adds more overhead). 434 434 * 435 435 * Outside the router, with a client using its own message format, the minimum size 436 * is 48, so any paddingSize <= 48 is a no-op.436 * is 48, so any paddingSize <= 48 is a no-op. 437 437 * 438 438 * Not included in the minimum is a 32-byte session tag for an existing session, -
core/java/src/net/i2p/crypto/eddsa/math/GroupElement.java
rd196047 rb970912 863 863 * <p> 864 864 * Preconditions: (TODO: Check this applies here) 865 * a[31] <= 127865 * a[31] <= 127 866 866 * @param a = a[0]+256*a[1]+...+256^31 a[31] 867 867 * @return the GroupElement -
core/java/src/net/i2p/data/Certificate.java
rd196047 rb970912 117 117 118 118 /** 119 * @throws IllegalArgumentException if type <0119 * @throws IllegalArgumentException if type < 0 120 120 */ 121 121 public Certificate(int type, byte[] payload) { … … 132 132 133 133 /** 134 * @throws IllegalArgumentException if type <0134 * @throws IllegalArgumentException if type < 0 135 135 * @throws IllegalStateException if already set 136 136 */ -
core/java/src/net/i2p/data/PrivateKeyFile.java
rd196047 rb970912 254 254 255 255 /** 256 * @param padding null OK, must be non-null if spubkey length <128256 * @param padding null OK, must be non-null if spubkey length < 128 257 257 * @throws IllegalArgumentException on mismatch of spubkey and spk types 258 258 * @since 0.9.16 -
core/java/src/net/i2p/util/EepGet.java
rd196047 rb970912 608 608 * Blocking fetch. 609 609 * 610 * @param fetchHeaderTimeout <= 0 for none (proxy will timeout if none, none isn't recommended if no proxy)611 * @param totalTimeout <= 0 for default none612 * @param inactivityTimeout <= 0 for default 60 sec610 * @param fetchHeaderTimeout <= 0 for none (proxy will timeout if none, none isn't recommended if no proxy) 611 * @param totalTimeout <= 0 for default none 612 * @param inactivityTimeout <= 0 for default 60 sec 613 613 */ 614 614 public boolean fetch(long fetchHeaderTimeout, long totalTimeout, long inactivityTimeout) {
Note: See TracChangeset
for help on using the changeset viewer.