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

12 lines
453 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 SRTPProtectionProfile {
public static final int SRTP_AEAD_AES_128_GCM = 7;
public static final int SRTP_AEAD_AES_256_GCM = 8;
public static final int SRTP_AES128_CM_HMAC_SHA1_32 = 2;
public static final int SRTP_AES128_CM_HMAC_SHA1_80 = 1;
public static final int SRTP_NULL_HMAC_SHA1_32 = 6;
public static final int SRTP_NULL_HMAC_SHA1_80 = 5;
}