You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

168 lines
5.7KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * Libav is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include <stdint.h>
  19. #include <stdio.h>
  20. #include <string.h>
  21. #include "libavformat/rtpdec.h"
  22. #include "libavformat/srtp.h"
  23. static const char *aes128_80_key = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmn";
  24. static const uint8_t rtp_aes128_80[] = {
  25. // RTP header
  26. 0x80, 0xe0, 0x12, 0x34, 0x12, 0x34, 0x56, 0x78, 0x12, 0x34, 0x56, 0x78,
  27. // encrypted payload
  28. 0x62, 0x69, 0x76, 0xca, 0xc5,
  29. // HMAC
  30. 0xa1, 0xac, 0x1b, 0xb4, 0xa0, 0x1c, 0xd5, 0x49, 0x28, 0x99,
  31. };
  32. static const uint8_t rtcp_aes128_80[] = {
  33. // RTCP header
  34. 0x81, 0xc9, 0x00, 0x07, 0x12, 0x34, 0x56, 0x78,
  35. // encrypted payload
  36. 0x8a, 0xac, 0xdc, 0xa5, 0x4c, 0xf6, 0x78, 0xa6, 0x62, 0x8f, 0x24, 0xda,
  37. 0x6c, 0x09, 0x3f, 0xa9, 0x28, 0x7a, 0xb5, 0x7f, 0x1f, 0x0f, 0xc9, 0x35,
  38. // RTCP index
  39. 0x80, 0x00, 0x00, 0x03,
  40. // HMAC
  41. 0xe9, 0x3b, 0xc0, 0x5c, 0x0c, 0x06, 0x9f, 0xab, 0xc0, 0xde,
  42. };
  43. static const char *aes128_32_key = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmn";
  44. static const uint8_t rtp_aes128_32[] = {
  45. // RTP header
  46. 0x80, 0xe0, 0x12, 0x34, 0x12, 0x34, 0x56, 0x78, 0x12, 0x34, 0x56, 0x78,
  47. // encrypted payload
  48. 0x62, 0x69, 0x76, 0xca, 0xc5,
  49. // HMAC
  50. 0xa1, 0xac, 0x1b, 0xb4,
  51. };
  52. static const uint8_t rtcp_aes128_32[] = {
  53. // RTCP header
  54. 0x81, 0xc9, 0x00, 0x07, 0x12, 0x34, 0x56, 0x78,
  55. // encrypted payload
  56. 0x35, 0xe9, 0xb5, 0xff, 0x0d, 0xd1, 0xde, 0x70, 0x74, 0x10, 0xaa, 0x1b,
  57. 0xb2, 0x8d, 0xf0, 0x20, 0x02, 0x99, 0x6b, 0x1b, 0x0b, 0xd0, 0x47, 0x34,
  58. // RTCP index
  59. 0x80, 0x00, 0x00, 0x04,
  60. // HMAC
  61. 0x5b, 0xd2, 0xa9, 0x9d,
  62. };
  63. static const char *aes128_80_32_key = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmn";
  64. static const uint8_t rtp_aes128_80_32[] = {
  65. // RTP header
  66. 0x80, 0xe0, 0x12, 0x34, 0x12, 0x34, 0x56, 0x78, 0x12, 0x34, 0x56, 0x78,
  67. // encrypted payload
  68. 0x62, 0x69, 0x76, 0xca, 0xc5,
  69. // HMAC
  70. 0xa1, 0xac, 0x1b, 0xb4,
  71. };
  72. static const uint8_t rtcp_aes128_80_32[] = {
  73. // RTCP header
  74. 0x81, 0xc9, 0x00, 0x07, 0x12, 0x34, 0x56, 0x78,
  75. // encrypted payload
  76. 0xd6, 0xae, 0xc1, 0x58, 0x63, 0x70, 0xc9, 0x88, 0x66, 0x26, 0x1c, 0x53,
  77. 0xff, 0x5d, 0x5d, 0x2b, 0x0f, 0x8c, 0x72, 0x3e, 0xc9, 0x1d, 0x43, 0xf9,
  78. // RTCP index
  79. 0x80, 0x00, 0x00, 0x05,
  80. // HMAC
  81. 0x09, 0x16, 0xb4, 0x27, 0x9a, 0xe9, 0x92, 0x26, 0x4e, 0x10,
  82. };
  83. static void print_data(const uint8_t *buf, int len)
  84. {
  85. int i;
  86. for (i = 0; i < len; i++)
  87. printf("%02x", buf[i]);
  88. printf("\n");
  89. }
  90. static int test_decrypt(struct SRTPContext *srtp, const uint8_t *in, int len,
  91. uint8_t *out)
  92. {
  93. memcpy(out, in, len);
  94. if (!ff_srtp_decrypt(srtp, out, &len)) {
  95. print_data(out, len);
  96. return len;
  97. } else
  98. return -1;
  99. }
  100. static void test_encrypt(const uint8_t *data, int in_len, const char *suite,
  101. const char *key)
  102. {
  103. struct SRTPContext enc = { 0 }, dec = { 0 };
  104. int len;
  105. char buf[RTP_MAX_PACKET_LENGTH];
  106. ff_srtp_set_crypto(&enc, suite, key);
  107. ff_srtp_set_crypto(&dec, suite, key);
  108. len = ff_srtp_encrypt(&enc, data, in_len, buf, sizeof(buf));
  109. if (!ff_srtp_decrypt(&dec, buf, &len)) {
  110. if (len == in_len && !memcmp(buf, data, len))
  111. printf("Decrypted content matches input\n");
  112. else
  113. printf("Decrypted content doesn't match input\n");
  114. } else {
  115. printf("Decryption failed\n");
  116. }
  117. ff_srtp_free(&enc);
  118. ff_srtp_free(&dec);
  119. }
  120. int main(void)
  121. {
  122. static const char *aes128_80_suite = "AES_CM_128_HMAC_SHA1_80";
  123. static const char *aes128_32_suite = "AES_CM_128_HMAC_SHA1_32";
  124. static const char *aes128_80_32_suite = "SRTP_AES128_CM_HMAC_SHA1_32";
  125. static const char *test_key = "abcdefghijklmnopqrstuvwxyz1234567890ABCD";
  126. uint8_t buf[RTP_MAX_PACKET_LENGTH];
  127. struct SRTPContext srtp = { 0 };
  128. int len;
  129. ff_srtp_set_crypto(&srtp, aes128_80_suite, aes128_80_key);
  130. len = test_decrypt(&srtp, rtp_aes128_80, sizeof(rtp_aes128_80), buf);
  131. test_encrypt(buf, len, aes128_80_suite, test_key);
  132. test_encrypt(buf, len, aes128_32_suite, test_key);
  133. test_encrypt(buf, len, aes128_80_32_suite, test_key);
  134. test_decrypt(&srtp, rtcp_aes128_80, sizeof(rtcp_aes128_80), buf);
  135. test_encrypt(buf, len, aes128_80_suite, test_key);
  136. test_encrypt(buf, len, aes128_32_suite, test_key);
  137. test_encrypt(buf, len, aes128_80_32_suite, test_key);
  138. ff_srtp_free(&srtp);
  139. memset(&srtp, 0, sizeof(srtp)); // Clear the context
  140. ff_srtp_set_crypto(&srtp, aes128_32_suite, aes128_32_key);
  141. test_decrypt(&srtp, rtp_aes128_32, sizeof(rtp_aes128_32), buf);
  142. test_decrypt(&srtp, rtcp_aes128_32, sizeof(rtcp_aes128_32), buf);
  143. ff_srtp_free(&srtp);
  144. memset(&srtp, 0, sizeof(srtp)); // Clear the context
  145. ff_srtp_set_crypto(&srtp, aes128_80_32_suite, aes128_80_32_key);
  146. test_decrypt(&srtp, rtp_aes128_80_32, sizeof(rtp_aes128_80_32), buf);
  147. test_decrypt(&srtp, rtcp_aes128_80_32, sizeof(rtcp_aes128_80_32), buf);
  148. ff_srtp_free(&srtp);
  149. return 0;
  150. }