|
Agora Java API Reference for Android
|
Built-in encryption configurations. More...
#include <AgoraBase.h>
Public Attributes | |
| ENCRYPTION_MODE | encryptionMode |
| const char * | encryptionKey |
| uint8_t | encryptionKdfSalt [32] |
| bool | datastreamEncryptionEnabled |
Built-in encryption configurations.
| ENCRYPTION_MODE agora::rtc::EncryptionConfig::encryptionMode |
The built-in encryption mode. See ENCRYPTION_MODE. Agora recommends using AES_128_GCM2 or AES_256_GCM2 encrypted mode. These two modes support the use of salt for higher security.
| const char* agora::rtc::EncryptionConfig::encryptionKey |
Encryption key in string type with unlimited length. Agora recommends using a 32-byte key.
NULL, you cannot use the built-in encryption, and the SDK returns -2. | uint8_t agora::rtc::EncryptionConfig::encryptionKdfSalt[32] |
Salt, 32 bytes in length. Agora recommends that you use OpenSSL to generate salt on the server side. See Media Stream Encryption for details.
AES_128_GCM2 or AES_256_GCM2 encrypted mode. In this case, ensure that this parameter is not 0. | bool agora::rtc::EncryptionConfig::datastreamEncryptionEnabled |
Whether to enable data stream encryption:
true: Enable data stream encryption.false: (Default) Disable data stream encryption.
1.8.18