mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-01 19:04:47 +00:00
ZRTP_SRTP_HASH_SHA1 was moved from public zrtp_hash_id_t to the private srtp implementation. HMAC SHA1 constant was also renamed to ZRTP_SRTP_HASH_HMAC_SHA1 in order to raise an error if the user tries to use an old ZRTP_SRTP_HASH_SHA1 constant in a ZRTP session configuration.
20 lines
536 B
C
20 lines
536 B
C
/*
|
|
* libZRTP SDK library, implements the ZRTP secure VoIP protocol.
|
|
* Copyright (c) 2006-2009 Philip R. Zimmermann. All rights reserved.
|
|
* Contact: http://philzimmermann.com
|
|
* For licensing and other legal details, see the file zrtp_legal.c.
|
|
*
|
|
* Viktor Krykun <v.krikun at zfoneproject.com>
|
|
*/
|
|
|
|
#ifndef __ZRTP_VERSION_H__
|
|
#define __ZRTP_VERSION_H__
|
|
|
|
#define LIBZRTP_VERSION_MAJOR 1
|
|
|
|
#define LIBZRTP_VERSION_MINOR 12
|
|
#define LIBZRTP_VERSION_BUILD 600
|
|
#define LIBZRTP_VERSION_STR "v1.12 600"
|
|
|
|
#endif /*__ZRTP_VERSION_H__*/
|