MCPcopy Create free account
hub / github.com/core-lib/xjar / use

Method use

src/main/java/io/xjar/XDecryption.java:54–61  ·  view source on GitHub ↗

指定密码 @param password 密码 @return this

(String password)

Source from the content-addressed store, hash-verified

52 * @return {@code this}
53 */
54 public XDecryption use(String password) {
55 try {
56 this.key = XKit.key(password);
57 return this;
58 } catch (NoSuchAlgorithmException e) {
59 throw new IllegalStateException(e);
60 }
61 }
62
63 /**
64 * 指定高级密码

Callers

nothing calls this directly

Calls 1

keyMethod · 0.95

Tested by

no test coverage detected