summaryrefslogtreecommitdiff
path: root/modules/srtp/sdes.h
blob: a5637bc904fba5bf278ba3ea0f2e508a737613bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * @file /srtp/sdes.h  SDP Security Descriptions for Media Streams API
 *
 * Copyright (C) 2010 Creytiv.com
 */


struct crypto {
	uint32_t tag;
	struct pl suite;
	struct pl key_method;
	struct pl key_info;
	struct pl lifetime;  /* optional */
	struct pl mki;       /* optional */
	struct pl sess_prms; /* optional */
};

extern const char sdp_attr_crypto[];

int sdes_encode_crypto(struct sdp_media *m, uint32_t tag, const char *suite,
		       const char *key, size_t key_len);
int sdes_decode_crypto(struct crypto *c, const char *val);