what-the-bank/sources/org/bouncycastle/crypto/tls/MaxFragmentLength.java

14 lines
360 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.tls;
/* loaded from: classes6.dex */
public class MaxFragmentLength {
public static final short pow2_10 = 2;
public static final short pow2_11 = 3;
public static final short pow2_12 = 4;
public static final short pow2_9 = 1;
public static boolean isValid(short s) {
return s > 0 && s <= 4;
}
}