gstmikey.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668
  1. /* GStreamer
  2. * Copyright (C) <2014> Wim Taymans <wim.taymans@gmail.com>
  3. *
  4. * gstmikey.h: various helper functions to manipulate mikey messages
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Library General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Library General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Library General Public
  17. * License along with this library; if not, write to the
  18. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  19. * Boston, MA 02110-1301, USA.
  20. */
  21. #ifndef __GST_MIKEY_H__
  22. #define __GST_MIKEY_H__
  23. #include <gst/gst.h>
  24. G_BEGIN_DECLS
  25. GType gst_mikey_message_get_type(void);
  26. #define GST_TYPE_MIKEY_MESSAGE (gst_mikey_message_get_type())
  27. typedef struct _GstMIKEYMessage GstMIKEYMessage;
  28. typedef struct _GstMIKEYEncryptInfo GstMIKEYEncryptInfo;
  29. typedef struct _GstMIKEYDecryptInfo GstMIKEYDecryptInfo;
  30. /**
  31. * GST_MIKEY_VERSION:
  32. *
  33. * The supported MIKEY version 1.
  34. */
  35. #define GST_MIKEY_VERSION 1
  36. /**
  37. * GstMIKEYType:
  38. * @GST_MIKEY_TYPE_INVALID: Invalid type
  39. * @GST_MIKEY_TYPE_PSK_INIT: Initiator's pre-shared key message
  40. * @GST_MIKEY_TYPE_PSK_VERIFY: Verification message of a Pre-shared key message
  41. * @GST_MIKEY_TYPE_PK_INIT: Initiator's public-key transport message
  42. * @GST_MIKEY_TYPE_PK_VERIFY: Verification message of a public-key message
  43. * @GST_MIKEY_TYPE_DH_INIT: Initiator's DH exchange message
  44. * @GST_MIKEY_TYPE_DH_RESP: Responder's DH exchange message
  45. * @GST_MIKEY_TYPE_ERROR: Error message
  46. *
  47. * Different MIKEY data types.
  48. */
  49. typedef enum
  50. {
  51. GST_MIKEY_TYPE_INVALID = -1,
  52. GST_MIKEY_TYPE_PSK_INIT = 0,
  53. GST_MIKEY_TYPE_PSK_VERIFY = 1,
  54. GST_MIKEY_TYPE_PK_INIT = 2,
  55. GST_MIKEY_TYPE_PK_VERIFY = 3,
  56. GST_MIKEY_TYPE_DH_INIT = 4,
  57. GST_MIKEY_TYPE_DH_RESP = 5,
  58. GST_MIKEY_TYPE_ERROR = 6
  59. } GstMIKEYType;
  60. /**
  61. * GstMIKEYPayloadType:
  62. * @GST_MIKEY_PT_LAST: Last payload
  63. * @GST_MIKEY_PT_KEMAC: Key data transport payload
  64. * @GST_MIKEY_PT_PKE: Envelope data payload
  65. * @GST_MIKEY_PT_DH: DH data payload
  66. * @GST_MIKEY_PT_SIGN: Signature payload
  67. * @GST_MIKEY_PT_T: Timestamp payload
  68. * @GST_MIKEY_PT_ID: ID payload
  69. * @GST_MIKEY_PT_CERT: Certificate Payload
  70. * @GST_MIKEY_PT_CHASH: Cert hash payload
  71. * @GST_MIKEY_PT_V: Verfication message payload
  72. * @GST_MIKEY_PT_SP: Security Policy payload
  73. * @GST_MIKEY_PT_RAND: RAND payload
  74. * @GST_MIKEY_PT_ERR: Error payload
  75. * @GST_MIKEY_PT_KEY_DATA: Key data sub-payload
  76. * @GST_MIKEY_PT_GEN_EXT: General Extension Payload
  77. * Different MIKEY Payload types.
  78. */
  79. typedef enum
  80. {
  81. GST_MIKEY_PT_LAST = 0,
  82. GST_MIKEY_PT_KEMAC = 1,
  83. GST_MIKEY_PT_PKE = 2,
  84. GST_MIKEY_PT_DH = 3,
  85. GST_MIKEY_PT_SIGN = 4,
  86. GST_MIKEY_PT_T = 5,
  87. GST_MIKEY_PT_ID = 6,
  88. GST_MIKEY_PT_CERT = 7,
  89. GST_MIKEY_PT_CHASH = 8,
  90. GST_MIKEY_PT_V = 9,
  91. GST_MIKEY_PT_SP = 10,
  92. GST_MIKEY_PT_RAND = 11,
  93. GST_MIKEY_PT_ERR = 12,
  94. GST_MIKEY_PT_KEY_DATA = 20,
  95. GST_MIKEY_PT_GEN_EXT = 21
  96. } GstMIKEYPayloadType;
  97. /**
  98. * GstMIKEYPRFFunc:
  99. * @GST_MIKEY_PRF_MIKEY_1: MIKEY-1 PRF function
  100. *
  101. * The PRF function that has been/will be used for key derivation
  102. */
  103. typedef enum
  104. {
  105. GST_MIKEY_PRF_MIKEY_1 = 0
  106. } GstMIKEYPRFFunc;
  107. /**
  108. * GstMIKEYMapType:
  109. * @GST_MIKEY_MAP_TYPE_SRTP:
  110. *
  111. * Specifies the method of uniquely mapping Crypto Sessions to the security
  112. * protocol sessions.
  113. */
  114. typedef enum
  115. {
  116. GST_MIKEY_MAP_TYPE_SRTP = 0
  117. } GstMIKEYMapType;
  118. /**
  119. * GstMIKEYMapSRTP:
  120. * @policy: The security policy applied for the stream with @ssrc
  121. * @ssrc: the SSRC that must be used for the stream
  122. * @roc: current rollover counter
  123. *
  124. * The Security policy Map item for SRTP
  125. */
  126. typedef struct {
  127. guint8 policy;
  128. guint32 ssrc;
  129. guint32 roc;
  130. } GstMIKEYMapSRTP;
  131. typedef struct _GstMIKEYPayload GstMIKEYPayload;
  132. GType gst_mikey_payload_get_type(void);
  133. #define GST_TYPE_MIKEY_PAYLOAD (gst_mikey_payload_get_type())
  134. /**
  135. * GstMIKEYPayload:
  136. * @type: the payload type
  137. * @len: length of the payload
  138. *
  139. * Hold the common fields for all payloads
  140. */
  141. struct _GstMIKEYPayload {
  142. /* < private > */
  143. GstMiniObject mini_object;
  144. /* < public > */
  145. GstMIKEYPayloadType type;
  146. guint len;
  147. };
  148. GstMIKEYPayload * gst_mikey_payload_new (GstMIKEYPayloadType type);
  149. /**
  150. * gst_mikey_payload_ref:
  151. * @payload: The payload to refcount
  152. *
  153. * Increase the refcount of this payload.
  154. *
  155. * Returns: (transfer full): @payload (for convenience when doing assignments)
  156. *
  157. * Since: 1.4
  158. */
  159. static inline GstMIKEYPayload *
  160. gst_mikey_payload_ref (GstMIKEYPayload * payload)
  161. {
  162. return (GstMIKEYPayload *) gst_mini_object_ref (GST_MINI_OBJECT_CAST (payload));
  163. }
  164. /**
  165. * gst_mikey_payload_unref:
  166. * @payload: (transfer full): the payload to refcount
  167. *
  168. * Decrease the refcount of an payload, freeing it if the refcount reaches 0.
  169. *
  170. * Since: 1.4
  171. */
  172. static inline void
  173. gst_mikey_payload_unref (GstMIKEYPayload * payload)
  174. {
  175. gst_mini_object_unref (GST_MINI_OBJECT_CAST (payload));
  176. }
  177. /**
  178. * gst_mikey_payload_copy:
  179. * @payload: a #GstMIKEYPayload.
  180. *
  181. * Create a copy of the given payload.
  182. *
  183. * Returns: (transfer full): a new copy of @payload.
  184. *
  185. * Since: 1.4
  186. */
  187. static inline GstMIKEYPayload *
  188. gst_mikey_payload_copy (const GstMIKEYPayload * payload)
  189. {
  190. return (GstMIKEYPayload *) gst_mini_object_copy (GST_MINI_OBJECT_CONST_CAST (payload));
  191. }
  192. /**
  193. * GstMIKEYEncAlg:
  194. * @GST_MIKEY_ENC_NULL: no encryption
  195. * @GST_MIKEY_ENC_AES_CM_128: AES-CM using a 128-bit key
  196. * @GST_MIKEY_ENC_AES_KW_128: AES Key Wrap using a 128-bit key
  197. *
  198. * The encryption algorithm used to encrypt the Encr data field
  199. */
  200. typedef enum
  201. {
  202. GST_MIKEY_ENC_NULL = 0,
  203. GST_MIKEY_ENC_AES_CM_128 = 1,
  204. GST_MIKEY_ENC_AES_KW_128 = 2
  205. } GstMIKEYEncAlg;
  206. /**
  207. * GstMIKEYMacAlg:
  208. * @GST_MIKEY_MAC_NULL: no authentication
  209. * @GST_MIKEY_MAC_HMAC_SHA_1_160: HMAC-SHA-1-160
  210. *
  211. * Specifies the authentication algorithm used
  212. */
  213. typedef enum
  214. {
  215. GST_MIKEY_MAC_NULL = 0,
  216. GST_MIKEY_MAC_HMAC_SHA_1_160 = 1
  217. } GstMIKEYMacAlg;
  218. /**
  219. * GstMIKEYPayloadKEMAC:
  220. * @pt: the common #GstMIKEYPayload
  221. * @enc_alg: the #GstMIKEYEncAlg
  222. * @mac_alg: the #GstMIKEYMacAlg
  223. * @subpayloads: the subpayloads
  224. *
  225. * A structure holding the KEMAC payload
  226. */
  227. typedef struct {
  228. GstMIKEYPayload pt;
  229. GstMIKEYEncAlg enc_alg;
  230. GstMIKEYMacAlg mac_alg;
  231. GArray *subpayloads;
  232. } GstMIKEYPayloadKEMAC;
  233. gboolean gst_mikey_payload_kemac_set (GstMIKEYPayload *payload,
  234. GstMIKEYEncAlg enc_alg,
  235. GstMIKEYMacAlg mac_alg);
  236. guint gst_mikey_payload_kemac_get_n_sub (const GstMIKEYPayload *payload);
  237. const GstMIKEYPayload * gst_mikey_payload_kemac_get_sub (const GstMIKEYPayload *payload, guint idx);
  238. gboolean gst_mikey_payload_kemac_remove_sub (GstMIKEYPayload *payload, guint idx);
  239. gboolean gst_mikey_payload_kemac_add_sub (GstMIKEYPayload *payload,
  240. GstMIKEYPayload *newpay);
  241. /**
  242. * GstMIKEYCacheType:
  243. * @GST_MIKEY_CACHE_NONE: The envelope key MUST NOT be cached
  244. * @GST_MIKEY_CACHE_ALWAYS: The envelope key MUST be cached
  245. * @GST_MIKEY_CACHE_FOR_CSB: The envelope key MUST be cached, but only
  246. * to be used for the specific CSB.
  247. *
  248. * The different cache types
  249. */
  250. typedef enum
  251. {
  252. GST_MIKEY_CACHE_NONE = 0,
  253. GST_MIKEY_CACHE_ALWAYS = 1,
  254. GST_MIKEY_CACHE_FOR_CSB = 2
  255. } GstMIKEYCacheType;
  256. /**
  257. * GstMIKEYPayloadPKE:
  258. * @pt: the common #GstMIKEYPayload
  259. * @C: envelope key cache indicator
  260. * @data_len: length of @data
  261. * @data: the encrypted envelope key
  262. *
  263. * The Envelope data payload contains the encrypted envelope key that is
  264. * used in the public-key transport to protect the data in the Key data
  265. * transport payload. The encryption algorithm used is implicit from
  266. * the certificate/public key used.
  267. */
  268. typedef struct {
  269. GstMIKEYPayload pt;
  270. GstMIKEYCacheType C;
  271. guint16 data_len;
  272. guint8 *data;
  273. } GstMIKEYPayloadPKE;
  274. gboolean gst_mikey_payload_pke_set (GstMIKEYPayload *payload,
  275. GstMIKEYCacheType C,
  276. guint16 data_len, const guint8 *data);
  277. /**
  278. * GstMIKEYTSType:
  279. * @GST_MIKEY_TS_TYPE_NTP_UTC: an NTP time in UTC timezone
  280. * @GST_MIKEY_TS_TYPE_NTP: an NTP time
  281. * @GST_MIKEY_TS_TYPE_COUNTER: a counter
  282. *
  283. * Specifies the timestamp type.
  284. */
  285. typedef enum
  286. {
  287. GST_MIKEY_TS_TYPE_NTP_UTC = 0,
  288. GST_MIKEY_TS_TYPE_NTP = 1,
  289. GST_MIKEY_TS_TYPE_COUNTER = 2
  290. } GstMIKEYTSType;
  291. /**
  292. * GstMIKEYPayloadT:
  293. * @pt: the payload header
  294. * @type: a #GstMIKEYTSType
  295. * @ts_value: the timestamp value
  296. *
  297. * The timestamp payload carries the timestamp information
  298. */
  299. typedef struct {
  300. GstMIKEYPayload pt;
  301. GstMIKEYTSType type;
  302. guint8 *ts_value;
  303. } GstMIKEYPayloadT;
  304. gboolean gst_mikey_payload_t_set (GstMIKEYPayload *payload,
  305. GstMIKEYTSType type, const guint8 *ts_value);
  306. /**
  307. * GstMIKEYPayloadSPParam:
  308. * @type: specifies the type of the parameter
  309. * @len: specifies the length of @val
  310. * @val: specifies the value of the parameter
  311. *
  312. * A Type/Length/Value field for security paramaters
  313. */
  314. typedef struct {
  315. guint8 type;
  316. guint8 len;
  317. guint8 *val;
  318. } GstMIKEYPayloadSPParam;
  319. /**
  320. * GstMIKEYSecProto:
  321. * @GST_MIKEY_SEC_PROTO_SRTP:
  322. *
  323. * Specifies the security protocol
  324. */
  325. typedef enum
  326. {
  327. GST_MIKEY_SEC_PROTO_SRTP = 0
  328. } GstMIKEYSecProto;
  329. /**
  330. * GstMIKEYSecSRTP:
  331. * @GST_MIKEY_SP_SRTP_ENC_ALG: Encryption algorithm
  332. * @GST_MIKEY_SP_SRTP_ENC_KEY_LEN: Session Encr. key length
  333. * @GST_MIKEY_SP_SRTP_AUTH_ALG: Authentication algorithm
  334. * @GST_MIKEY_SP_SRTP_AUTH_KEY_LEN: Session Auth. key length
  335. * @GST_MIKEY_SP_SRTP_SALT_KEY_LEN: Session Salt key length
  336. * @GST_MIKEY_SP_SRTP_PRF: SRTP Pseudo Random Function
  337. * @GST_MIKEY_SP_SRTP_KEY_DERIV_RATE: Key derivation rate
  338. * @GST_MIKEY_SP_SRTP_SRTP_ENC: SRTP encryption off/on, 0 if off, 1 if on
  339. * @GST_MIKEY_SP_SRTP_SRTCP_ENC: SRTCP encryption off/on, 0 if off, 1 if on
  340. * @GST_MIKEY_SP_SRTP_FEC_ORDER: sender's FEC order
  341. * @GST_MIKEY_SP_SRTP_SRTP_AUTH: SRTP authentication off/on, 0 if off, 1 if on
  342. * @GST_MIKEY_SP_SRTP_AUTH_TAG_LEN: Authentication tag length
  343. * @GST_MIKEY_SP_SRTP_SRTP_PREFIX_LEN: SRTP prefix length
  344. *
  345. * This policy specifies the parameters for SRTP and SRTCP
  346. */
  347. typedef enum
  348. {
  349. GST_MIKEY_SP_SRTP_ENC_ALG = 0,
  350. GST_MIKEY_SP_SRTP_ENC_KEY_LEN = 1,
  351. GST_MIKEY_SP_SRTP_AUTH_ALG = 2,
  352. GST_MIKEY_SP_SRTP_AUTH_KEY_LEN = 3,
  353. GST_MIKEY_SP_SRTP_SALT_KEY_LEN = 4,
  354. GST_MIKEY_SP_SRTP_PRF = 5,
  355. GST_MIKEY_SP_SRTP_KEY_DERIV_RATE = 6,
  356. GST_MIKEY_SP_SRTP_SRTP_ENC = 7,
  357. GST_MIKEY_SP_SRTP_SRTCP_ENC = 8,
  358. GST_MIKEY_SP_SRTP_FEC_ORDER = 9,
  359. GST_MIKEY_SP_SRTP_SRTP_AUTH = 10,
  360. GST_MIKEY_SP_SRTP_AUTH_TAG_LEN = 11,
  361. GST_MIKEY_SP_SRTP_SRTP_PREFIX_LEN = 12
  362. } GstMIKEYSecSRTP;
  363. /**
  364. * GstMIKEYPayloadSP:
  365. * @pt: the payload header
  366. * @policy: the policy number
  367. * @proto: the security protocol
  368. * @params: array of #GstMIKEYPayloadPSParam
  369. *
  370. * The Security Policy payload defines a set of policies that apply to a
  371. * specific security protocol
  372. */
  373. typedef struct {
  374. GstMIKEYPayload pt;
  375. guint policy;
  376. GstMIKEYSecProto proto;
  377. GArray *params;
  378. } GstMIKEYPayloadSP;
  379. gboolean gst_mikey_payload_sp_set (GstMIKEYPayload *payload,
  380. guint policy, GstMIKEYSecProto proto);
  381. guint gst_mikey_payload_sp_get_n_params (const GstMIKEYPayload *payload);
  382. const GstMIKEYPayloadSPParam *
  383. gst_mikey_payload_sp_get_param (const GstMIKEYPayload *payload, guint idx);
  384. gboolean gst_mikey_payload_sp_remove_param (GstMIKEYPayload *payload, guint idx);
  385. gboolean gst_mikey_payload_sp_add_param (GstMIKEYPayload *payload,
  386. guint8 type, guint8 len, const guint8 *val);
  387. /**
  388. * GstMIKEYPayloadRAND:
  389. * @pt: the payload header
  390. * @len: the length of @rand
  391. * @rand: random values
  392. *
  393. * The RAND payload consists of a (pseudo-)random bit-string
  394. */
  395. typedef struct {
  396. GstMIKEYPayload pt;
  397. guint8 len;
  398. guint8 *rand;
  399. } GstMIKEYPayloadRAND;
  400. gboolean gst_mikey_payload_rand_set (GstMIKEYPayload *payload,
  401. guint8 len, const guint8 *rand);
  402. /**
  403. * GstMIKEYKeyDataType:
  404. * @GST_MIKEY_KD_TGK: a TEK Generation Key
  405. * @GST_MIKEY_KD_TEK: Traffic-Encrypting Key
  406. *
  407. * The type of key.
  408. */
  409. typedef enum
  410. {
  411. GST_MIKEY_KD_TGK = 0,
  412. GST_MIKEY_KD_TEK = 2,
  413. } GstMIKEYKeyDataType;
  414. /**
  415. * GstMIKEYKVType:
  416. * @GST_MIKEY_KV_NULL: No specific usage rule
  417. * @GST_MIKEY_KV_SPI: The key is associated with the SPI/MKI
  418. * @GST_MIKEY_KV_INTERVAL: The key has a start and expiration time
  419. *
  420. * The key validity type
  421. */
  422. typedef enum
  423. {
  424. GST_MIKEY_KV_NULL = 0,
  425. GST_MIKEY_KV_SPI = 1,
  426. GST_MIKEY_KV_INTERVAL = 2,
  427. } GstMIKEYKVType;
  428. /**
  429. * GstMIKEYPayloadKeyData:
  430. * @pt: the payload header
  431. * @type: the #GstMIKEYKeyDataType of @key_data
  432. * @key_len: length of @key_data
  433. * @key_dat: the key data
  434. * @salt_len: the length of @salt_data, can be 0
  435. * @salt_data: salt data
  436. * @kv_type: the Key Validity type
  437. * @kv_len: length of @kv_data
  438. * @kv_data: key validity data
  439. *
  440. * The Key data payload contains key material. It should be added as sub
  441. * payload to the KEMAC.
  442. */
  443. typedef struct {
  444. GstMIKEYPayload pt;
  445. GstMIKEYKeyDataType key_type;
  446. guint16 key_len;
  447. guint8 *key_data;
  448. guint16 salt_len;
  449. guint8 *salt_data;
  450. GstMIKEYKVType kv_type;
  451. guint8 kv_len[2];
  452. guint8 *kv_data[2];
  453. } GstMIKEYPayloadKeyData;
  454. gboolean gst_mikey_payload_key_data_set_key (GstMIKEYPayload *payload,
  455. GstMIKEYKeyDataType key_type,
  456. guint16 key_len, const guint8 *key_data);
  457. gboolean gst_mikey_payload_key_data_set_salt (GstMIKEYPayload *payload,
  458. guint16 salt_len, const guint8 *salt_data);
  459. gboolean gst_mikey_payload_key_data_set_spi (GstMIKEYPayload *payload,
  460. guint8 spi_len, const guint8 *spi_data);
  461. gboolean gst_mikey_payload_key_data_set_interval (GstMIKEYPayload *payload,
  462. guint8 vf_len, const guint8 *vf_data,
  463. guint8 vt_len, const guint8 *vt_data);
  464. /**
  465. * GstMIKEYMessage:
  466. * @version: the version
  467. * @type: the #GstMIKEYType message type
  468. * @V: verify flag
  469. * @prf_func: a #GstMIKEYPRFFunc
  470. * @CSB_id: Identifies the Crypto Session Bundle
  471. * @map_type: a #GstMIKEYMapType
  472. * @map_info: map info array of type depending on @map_type
  473. * @payloads: the payload array of #GstMIKEYPayload
  474. *
  475. * Structure holding the information of the MIKEY message
  476. */
  477. struct _GstMIKEYMessage
  478. {
  479. /* < private > */
  480. GstMiniObject mini_object;
  481. /* < public > */
  482. guint8 version;
  483. GstMIKEYType type;
  484. gboolean V;
  485. GstMIKEYPRFFunc prf_func;
  486. guint32 CSB_id;
  487. GstMIKEYMapType map_type;
  488. GArray *map_info;
  489. GArray *payloads;
  490. };
  491. GstMIKEYMessage * gst_mikey_message_new (void);
  492. GstMIKEYMessage * gst_mikey_message_new_from_data (gconstpointer data, gsize size,
  493. GstMIKEYDecryptInfo *info, GError **error);
  494. GstMIKEYMessage * gst_mikey_message_new_from_bytes (GBytes *bytes, GstMIKEYDecryptInfo *info,
  495. GError **error);
  496. GBytes * gst_mikey_message_to_bytes (GstMIKEYMessage *msg, GstMIKEYEncryptInfo *info,
  497. GError **error);
  498. GstMIKEYMessage * gst_mikey_message_new_from_caps (GstCaps *caps);
  499. gboolean gst_mikey_message_to_caps (const GstMIKEYMessage *msg, GstCaps *caps);
  500. gchar * gst_mikey_message_base64_encode (GstMIKEYMessage* msg);
  501. /**
  502. * gst_mikey_message_ref:
  503. * @message: The message to refcount
  504. *
  505. * Increase the refcount of this message.
  506. *
  507. * Returns: (transfer full): @message (for convenience when doing assignments)
  508. *
  509. * Since: 1.4
  510. */
  511. static inline GstMIKEYMessage *
  512. gst_mikey_message_ref (GstMIKEYMessage * message)
  513. {
  514. return (GstMIKEYMessage *) gst_mini_object_ref (GST_MINI_OBJECT_CAST (message));
  515. }
  516. /**
  517. * gst_mikey_message_unref:
  518. * @message: (transfer full): the message to refcount
  519. *
  520. * Decrease the refcount of an message, freeing it if the refcount reaches 0.
  521. *
  522. * Since: 1.4
  523. */
  524. static inline void
  525. gst_mikey_message_unref (GstMIKEYMessage * message)
  526. {
  527. gst_mini_object_unref (GST_MINI_OBJECT_CAST (message));
  528. }
  529. /**
  530. * gst_mikey_message_copy:
  531. * @message: a #GstMIKEYMessage.
  532. *
  533. * Create a copy of the given message.
  534. *
  535. * Returns: (transfer full): a new copy of @message.
  536. *
  537. * Since: 1.4
  538. */
  539. static inline GstMIKEYMessage *
  540. gst_mikey_message_copy (const GstMIKEYMessage * message)
  541. {
  542. return (GstMIKEYMessage *) gst_mini_object_copy (GST_MINI_OBJECT_CONST_CAST (message));
  543. }
  544. gboolean gst_mikey_message_set_info (GstMIKEYMessage *msg,
  545. guint8 version, GstMIKEYType type, gboolean V,
  546. GstMIKEYPRFFunc prf_func, guint32 CSB_id,
  547. GstMIKEYMapType map_type);
  548. guint gst_mikey_message_get_n_cs (const GstMIKEYMessage *msg);
  549. /* SRTP crypto sessions */
  550. const GstMIKEYMapSRTP * gst_mikey_message_get_cs_srtp (const GstMIKEYMessage *msg, guint idx);
  551. gboolean gst_mikey_message_insert_cs_srtp (GstMIKEYMessage *msg, gint idx,
  552. const GstMIKEYMapSRTP *map);
  553. gboolean gst_mikey_message_replace_cs_srtp (GstMIKEYMessage *msg, gint idx,
  554. const GstMIKEYMapSRTP *map);
  555. gboolean gst_mikey_message_remove_cs_srtp (GstMIKEYMessage *msg, gint idx);
  556. gboolean gst_mikey_message_add_cs_srtp (GstMIKEYMessage *msg,
  557. guint8 policy, guint32 ssrc, guint32 roc);
  558. /* adding/retrieving payloads */
  559. guint gst_mikey_message_get_n_payloads (const GstMIKEYMessage *msg);
  560. const GstMIKEYPayload * gst_mikey_message_get_payload (const GstMIKEYMessage *msg, guint idx);
  561. const GstMIKEYPayload * gst_mikey_message_find_payload (const GstMIKEYMessage *msg,
  562. GstMIKEYPayloadType type, guint nth);
  563. gboolean gst_mikey_message_remove_payload (GstMIKEYMessage *msg, guint idx);
  564. gboolean gst_mikey_message_insert_payload (GstMIKEYMessage *msg, guint idx,
  565. GstMIKEYPayload *payload);
  566. gboolean gst_mikey_message_add_payload (GstMIKEYMessage *msg,
  567. GstMIKEYPayload *payload);
  568. gboolean gst_mikey_message_replace_payload (GstMIKEYMessage *msg, guint idx,
  569. GstMIKEYPayload *payload);
  570. /* Key data transport payload (KEMAC) */
  571. /* Envelope data payload (PKE) */
  572. gboolean gst_mikey_message_add_pke (GstMIKEYMessage *msg,
  573. GstMIKEYCacheType C,
  574. guint16 data_len, const guint8 *data);
  575. /* DH data payload (DH) */
  576. /* Signature payload (SIGN) */
  577. /* Timestamp payload (T) */
  578. gboolean gst_mikey_message_add_t (GstMIKEYMessage *msg,
  579. GstMIKEYTSType type, const guint8 *ts_value);
  580. gboolean gst_mikey_message_add_t_now_ntp_utc (GstMIKEYMessage *msg);
  581. /* ID payload (ID) */
  582. /* Certificate Payload (CERT) */
  583. /* Cert hash payload (CHASH)*/
  584. /* Ver msg payload (V) */
  585. /* Security Policy payload (SP)*/
  586. /* RAND payload (RAND) */
  587. gboolean gst_mikey_message_add_rand (GstMIKEYMessage *msg,
  588. guint8 len, const guint8 *rand);
  589. gboolean gst_mikey_message_add_rand_len (GstMIKEYMessage *msg, guint8 len);
  590. /* Error payload (ERR) */
  591. /* Key data sub-payload */
  592. /* General Extension Payload */
  593. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  594. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstMIKEYMessage, gst_mikey_message_unref)
  595. #endif
  596. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  597. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstMIKEYPayload, gst_mikey_payload_unref)
  598. #endif
  599. G_END_DECLS
  600. #endif /* __GST_MIKEY_H__ */