]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Update libzrtp version
authorViktor Krykun <viktor@krykun.com>
Fri, 15 Jun 2012 07:23:46 +0000 (10:23 +0300)
committerTravis Cross <tc@traviscross.com>
Mon, 11 Feb 2013 16:41:59 +0000 (16:41 +0000)
Modified-by: Travis Cross <tc@traviscross.com>
Signed-off-by: Travis Cross <tc@traviscross.com>
libs/libzrtp/configure.in
libs/libzrtp/doc/manuals/changelog.dox
libs/libzrtp/include/zrtp_version.h

index 34feb59a9137555a22a07e1b705d522765ae72a5..f95cf8d4f57e994b907dc4f72811b8e833ac3582 100644 (file)
@@ -32,7 +32,7 @@ case $target_os in
 esac
 
 
-AM_INIT_AUTOMAKE([libzrtp], [1.15])
+AM_INIT_AUTOMAKE([libzrtp], [1.20])
 AX_PREFIX_CONFIG_H(include/zrtp_config_unix.h,ZRTP,config/config.h)
 
 CFLAGS="$CFLAGS -Wno-unused-parameter -fno-strict-aliasing -fPIC -DZRTP_AUTOMAKE=1"
index 854278bc0e5dd7d24ad86b67df3b82217cf56ecf..66865158514e011afcc7850150cf4be709cb84d2 100644 (file)
 /*!
 \page changelog ChangeLog
 
+****************************************************************************************************
+\section v120 libzrtp v1.20 build XXX (ZRTP RFC 6189, protocol 1.1)
+****************************************************************************************************
+
+<b>This release is focused</b> on better ZRTP cache management. 
+
+***\subsection v120_changes API changes and Upgrade Instructions:
+  *- Starting from v120 libzrtp uses global ZID for all outgoing connections. Local ZID should be
+    specified in zrtp_global_t#zid and provided to zrtp_init(). App doesn't need to pass local ZID 
+    each time it creates new session via zrtp_session_init().    
+  *- Added zrtp_randstr2() which allow to generate random string before libzrtp being initialized.
+    Can be handy to generate initial ZID. In normal circumstances, use zrtp_randstr() whenever possible.
+  *- ZRTP cache API was completely redesigned. Look at zrtp_cache.h for more details.  
+  
+
+***\subsection v120_feature New features and improvements.
+  *- new better cache management API.
+
+***\subsection v120_bugs Bug fixes
+  *- fixed bug when ZRTP forces enrolled endpoints to re-render SAS when sashash is empty.
+  *- other minor bug fixes and improvements
+
+
 ****************************************************************************************************
 \section v091 DEVELOPERS BUILD Release Notes - libzrtp - Version 0.91 build XXX (ZRTP ID v16x, protocol 1.X)
 ****************************************************************************************************
@@ -194,4 +217,5 @@ Minor improvements. Zfone and libZRTP projects moved to public bug-tracking and
     
     *- [LZRTP-132] <b>Replace HMAC with KDF function call.</b>\n
        Since ZRTP draft 12b defines ZRTP KDF to be in compliance with the recommendations in NIST SP 800-108. KDF function implemented as _zrtp_kdf() in zrtp_utils_proto.c. All KDF operations were replaced with from hmac to kdf function.  
+
 */
index 3b4dfcb97fcd08a5538fa667c48e2d9e42a4b885..fc0a349442d54a418a96cc397b2e148f09844e4b 100644 (file)
@@ -12,8 +12,8 @@
 
 #define LIBZRTP_VERSION_MAJOR          1
 
-#define LIBZRTP_VERSION_MINOR          15
-#define LIBZRTP_VERSION_BUILD          611
-#define LIBZRTP_VERSION_STR                    "v1.15 611"
+#define LIBZRTP_VERSION_MINOR          20
+#define LIBZRTP_VERSION_BUILD          616
+#define LIBZRTP_VERSION_STR                    "v1.20 616"
 
 #endif /*__ZRTP_VERSION_H__*/