SrtpProtectionProfile
namespace Org.BouncyCastle.Tls
{
public abstract class SrtpProtectionProfile
{
public const int SRTP_AES128_CM_HMAC_SHA1_80 = 1;
public const int SRTP_AES128_CM_HMAC_SHA1_32 = 2;
public const int DRAFT_SRTP_AES256_CM_SHA1_80 = 3;
public const int DRAFT_SRTP_AES256_CM_SHA1_32 = 4;
public const int SRTP_NULL_HMAC_SHA1_80 = 5;
public const int SRTP_NULL_HMAC_SHA1_32 = 6;
public const int SRTP_AEAD_AES_128_GCM = 7;
public const int SRTP_AEAD_AES_256_GCM = 8;
public const int DOUBLE_AEAD_AES_128_GCM_AEAD_AES_128_GCM = 9;
public const int DOUBLE_AEAD_AES_256_GCM_AEAD_AES_256_GCM = 10;
public const int SRTP_ARIA_128_CTR_HMAC_SHA1_80 = 11;
public const int SRTP_ARIA_128_CTR_HMAC_SHA1_32 = 12;
public const int SRTP_ARIA_256_CTR_HMAC_SHA1_80 = 13;
public const int SRTP_ARIA_256_CTR_HMAC_SHA1_32 = 14;
public const int SRTP_AEAD_ARIA_128_GCM = 15;
public const int SRTP_AEAD_ARIA_256_GCM = 16;
}
}