- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for setAlgorithm (0.08 seconds)
-
src/main/java/org/codelibs/core/crypto/CachedCipher.java
/** * Returns the algorithm. * * @return the algorithm */ public String getAlgorithm() { return algorithm; } /** * Sets the algorithm. * * @param algorithm * the algorithm */ public void setAlgorithm(final String algorithm) { this.algorithm = algorithm; } /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 15.9K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/MessageDigestHashFunction.java
} catch (CloneNotSupportedException e) { // falls through } } return new MessageDigestHasher(getMessageDigest(prototype.getAlgorithm()), bytes); } private static final class SerializedForm implements Serializable { private final String algorithmName; private final int bytes; private final String toString;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 4.9K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/MacHashFunction.java
try { return new MacHasher((Mac) prototype.clone()); } catch (CloneNotSupportedException e) { // falls through } } return new MacHasher(getMac(prototype.getAlgorithm(), key)); } @Override public String toString() { return toString; } /** Hasher that updates a {@link Mac} (message authentication code). */Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 3.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/hash/MacHashFunctionTest.java
.hash()); } public void testCustomKey() throws Exception { SecretKey customKey = new SecretKey() { @Override public String getAlgorithm() { return "HmacMD5"; } @Override public byte[] getEncoded() { return new byte[8]; } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 14.2K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/Hashing.java
} private static String hmacToString(String methodName, Key key) { return "Hashing." + methodName + "(Key[algorithm=" + key.getAlgorithm() + ", format=" + key.getFormat() + "])"; } /** * Returns a hash function implementing the CRC32C checksum algorithm (32 hash bits) as described
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jul 17 15:26:41 GMT 2025 - 29.8K bytes - Click Count (0)