1*d9f75844SAndroid Build Coastguard Worker /* 2*d9f75844SAndroid Build Coastguard Worker * Copyright 2017 The WebRTC project authors. All Rights Reserved. 3*d9f75844SAndroid Build Coastguard Worker * 4*d9f75844SAndroid Build Coastguard Worker * Use of this source code is governed by a BSD-style license 5*d9f75844SAndroid Build Coastguard Worker * that can be found in the LICENSE file in the root of the source 6*d9f75844SAndroid Build Coastguard Worker * tree. An additional intellectual property rights grant can be found 7*d9f75844SAndroid Build Coastguard Worker * in the file PATENTS. All contributing project authors may 8*d9f75844SAndroid Build Coastguard Worker * be found in the AUTHORS file in the root of the source tree. 9*d9f75844SAndroid Build Coastguard Worker */ 10*d9f75844SAndroid Build Coastguard Worker 11*d9f75844SAndroid Build Coastguard Worker #ifndef PC_TEST_SRTP_TEST_UTIL_H_ 12*d9f75844SAndroid Build Coastguard Worker #define PC_TEST_SRTP_TEST_UTIL_H_ 13*d9f75844SAndroid Build Coastguard Worker 14*d9f75844SAndroid Build Coastguard Worker #include <string> 15*d9f75844SAndroid Build Coastguard Worker 16*d9f75844SAndroid Build Coastguard Worker namespace rtc { 17*d9f75844SAndroid Build Coastguard Worker 18*d9f75844SAndroid Build Coastguard Worker extern const char kCsAesCm128HmacSha1_32[]; 19*d9f75844SAndroid Build Coastguard Worker extern const char kCsAeadAes128Gcm[]; 20*d9f75844SAndroid Build Coastguard Worker extern const char kCsAeadAes256Gcm[]; 21*d9f75844SAndroid Build Coastguard Worker 22*d9f75844SAndroid Build Coastguard Worker static const uint8_t kTestKey1[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234"; 23*d9f75844SAndroid Build Coastguard Worker static const uint8_t kTestKey2[] = "4321ZYXWVUTSRQPONMLKJIHGFEDCBA"; 24*d9f75844SAndroid Build Coastguard Worker static const int kTestKeyLen = 30; 25*d9f75844SAndroid Build Coastguard Worker rtp_auth_tag_len(const std::string & cs)26*d9f75844SAndroid Build Coastguard Workerstatic int rtp_auth_tag_len(const std::string& cs) { 27*d9f75844SAndroid Build Coastguard Worker if (cs == kCsAesCm128HmacSha1_32) { 28*d9f75844SAndroid Build Coastguard Worker return 4; 29*d9f75844SAndroid Build Coastguard Worker } else if (cs == kCsAeadAes128Gcm || cs == kCsAeadAes256Gcm) { 30*d9f75844SAndroid Build Coastguard Worker return 16; 31*d9f75844SAndroid Build Coastguard Worker } else { 32*d9f75844SAndroid Build Coastguard Worker return 10; 33*d9f75844SAndroid Build Coastguard Worker } 34*d9f75844SAndroid Build Coastguard Worker } rtcp_auth_tag_len(const std::string & cs)35*d9f75844SAndroid Build Coastguard Workerstatic int rtcp_auth_tag_len(const std::string& cs) { 36*d9f75844SAndroid Build Coastguard Worker if (cs == kCsAeadAes128Gcm || cs == kCsAeadAes256Gcm) { 37*d9f75844SAndroid Build Coastguard Worker return 16; 38*d9f75844SAndroid Build Coastguard Worker } else { 39*d9f75844SAndroid Build Coastguard Worker return 10; 40*d9f75844SAndroid Build Coastguard Worker } 41*d9f75844SAndroid Build Coastguard Worker } 42*d9f75844SAndroid Build Coastguard Worker 43*d9f75844SAndroid Build Coastguard Worker } // namespace rtc 44*d9f75844SAndroid Build Coastguard Worker 45*d9f75844SAndroid Build Coastguard Worker #endif // PC_TEST_SRTP_TEST_UTIL_H_ 46