srtp.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*
  2.  * Secure RTP with libgcrypt
  3.  * Copyright (C) 2007  Rémi Denis-Courmont <rdenis # simphalempin , com>
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2.1 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the Free Software
  17.  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  18.  */
  19. #ifndef LIBVLC_SRTP_H
  20. # define LIBVLC_SRTP_H 1
  21. typedef struct srtp_session_t srtp_session_t;
  22. enum
  23. {
  24.     SRTP_UNENCRYPTED=0x1,   // do not encrypt SRTP packets
  25.     SRTCP_UNENCRYPTED=0x2,  // do not encrypt SRTCP packets
  26.     SRTP_UNAUTHENTICATED=0x4, // authenticate only SRTCP packets
  27.     SRTP_RCC_MODE1=0x10,    // use Roll-over-Counter Carry mode 1
  28.     SRTP_RCC_MODE2=0x20,    // use Roll-over-Counter Carry mode 2
  29.     SRTP_RCC_MODE3=0x30,    // use Roll-over-Counter Carry mode 3 (insecure)
  30.     SRTP_FLAGS_MASK=0x38
  31. };
  32. /* SRTP encryption algorithms (ciphers); same values as MIKEY */
  33. enum
  34. {
  35.     SRTP_ENCR_NULL=0,
  36.     SRTP_ENCR_AES_CM=1,
  37.     SRTP_ENCR_AES_F8=2 // not implemented
  38. };
  39. /* SRTP authenticaton algorithms; same values as MIKEY */
  40. enum
  41. {
  42.     SRTP_AUTH_NULL=0,
  43.     SRTP_AUTH_HMAC_SHA1=1
  44. };
  45. /* SRTP pseudo random function; same values as MIKEY */
  46. enum
  47. {
  48.     SRTP_PRF_AES_CM=0
  49. };
  50. # ifdef __cplusplus
  51. extern "C" {
  52. # endif
  53. srtp_session_t *srtp_create (int encr, int auth, unsigned tag_len, int prf,
  54.                              unsigned flags);
  55. void srtp_destroy (srtp_session_t *s);
  56. int srtp_setkey (srtp_session_t *s, const void *key, size_t keylen,
  57.                  const void *salt, size_t saltlen);
  58. int srtp_setkeystring (srtp_session_t *s, const char *key, const char *salt);
  59. void srtp_setrcc_rate (srtp_session_t *s, uint16_t rate);
  60. int srtp_send (srtp_session_t *s, uint8_t *buf, size_t *lenp, size_t maxsize);
  61. int srtp_recv (srtp_session_t *s, uint8_t *buf, size_t *lenp);
  62. int srtcp_send (srtp_session_t *s, uint8_t *buf, size_t *lenp, size_t maxsiz);
  63. int srtcp_recv (srtp_session_t *s, uint8_t *buf, size_t *lenp);
  64. # ifdef __cplusplus
  65. }
  66. # endif
  67. #endif