Changeset 3191
- Timestamp:
- Jun 2, 2010 9:32:42 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/transport_srtp.c
r2891 r3191 1055 1055 } 1056 1056 tmp = pj_str(token); 1057 if (PJ_BASE64_TO_BASE256_LEN(tmp.slen) > MAX_KEY_LEN) { 1058 PJ_LOG(4,(THIS_FILE, "Key too long")); 1059 return PJMEDIA_SRTP_EINKEYLEN; 1060 } 1061 1062 /* Decode key */ 1057 1063 crypto->key.ptr = (char*) pj_pool_zalloc(pool, MAX_KEY_LEN); 1058 1059 /* Decode key */1060 1064 itmp = MAX_KEY_LEN; 1061 1065 status = pj_base64_decode(&tmp, (pj_uint8_t*)crypto->key.ptr,
Note: See TracChangeset
for help on using the changeset viewer.