Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
b03636f0
提交
b03636f0
authored
2月 10, 2013
作者:
Travis Cross
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Always build with ECC support
上级
18273e5f
隐藏空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
3 行增加
和
59 行删除
+3
-59
Makefile.am
libs/libzrtp/Makefile.am
+3
-8
configure.in
libs/libzrtp/configure.in
+0
-11
zrtp.h
libs/libzrtp/include/zrtp.h
+0
-2
zrtp_config_android.h
libs/libzrtp/include/zrtp_config_android.h
+0
-2
zrtp_config_user.h
libs/libzrtp/include/zrtp_config_user.h
+0
-4
zrtp_crypto.h
libs/libzrtp/include/zrtp_crypto.h
+0
-3
zrtp_ec.h
libs/libzrtp/include/zrtp_ec.h
+0
-4
zrtp.c
libs/libzrtp/src/zrtp.c
+0
-11
zrtp_crypto_ec.c
libs/libzrtp/src/zrtp_crypto_ec.c
+0
-4
zrtp_crypto_ecdh.c
libs/libzrtp/src/zrtp_crypto_ecdh.c
+0
-4
zrtp_crypto_pk.c
libs/libzrtp/src/zrtp_crypto_pk.c
+0
-6
没有找到文件。
libs/libzrtp/Makefile.am
浏览文件 @
b03636f0
...
...
@@ -13,6 +13,7 @@ libzrtp_include_HEADERS = \
$(top_srcdir)
/include/zrtp_config_user.h
\
$(top_srcdir)
/include/zrtp_config_unix.h
\
$(top_srcdir)
/include/zrtp_crypto.h
\
$(top_srcdir)
/include/zrtp_ec.h
\
$(top_srcdir)
/include/zrtp_engine.h
\
$(top_srcdir)
/include/zrtp_error.h
\
$(top_srcdir)
/include/zrtp_iface.h
\
...
...
@@ -40,10 +41,6 @@ libzrtp_include_HEADERS = \
$(top_srcdir)
/third_party/bgaes/sha1.h
\
$(top_srcdir)
/third_party/bgaes/sha2.h
if
ZRTP_BUILD_ENTERPRISE
libzrtp_include_HEADERS
+=
$(top_srcdir)
/include/zrtp_ec.h
endif
lib_LIBRARIES
=
libzrtp.a
libzrtp_a_CPPFLAGS
=
\
...
...
@@ -58,6 +55,8 @@ libzrtp_a_SOURCES = $(top_srcdir)/src/zrtp.c \
$(top_srcdir)
/src/zrtp_crc.c
\
$(top_srcdir)
/src/zrtp_crypto_aes.c
\
$(top_srcdir)
/src/zrtp_crypto_atl.c
\
$(top_srcdir)
/src/zrtp_crypto_ec.c
\
$(top_srcdir)
/src/zrtp_crypto_ecdh.c
\
$(top_srcdir)
/src/zrtp_crypto_hash.c
\
$(top_srcdir)
/src/zrtp_crypto_pk.c
\
$(top_srcdir)
/src/zrtp_crypto_sas.c
\
...
...
@@ -87,10 +86,6 @@ libzrtp_a_SOURCES = $(top_srcdir)/src/zrtp.c \
\
$(top_srcdir)
/src/zrtp_iface_cache.c
$(top_srcdir)/src/zrtp_engine_driven.c
if
ZRTP_BUILD_ENTERPRISE
libzrtp_a_SOURCES
+=
$(top_srcdir)
/src/zrtp_crypto_ec.c
\
$(top_srcdir)
/src/zrtp_crypto_ecdh.c
endif
check_PROGRAMS
=
cache_test
...
...
libs/libzrtp/configure.in
浏览文件 @
b03636f0
...
...
@@ -49,10 +49,6 @@ AC_PROG_CC
AC_PROG_CXX
AC_PROG_RANLIB
# Apply configure options
AC_ARG_ENABLE(enterprise, [ --enable-enterprise enable building of enterprise components).], enable_enterprise=$enableval,enable_enterprise="no")
AM_CONDITIONAL(ZRTP_BUILD_ENTERPRISE, [test "x$enable_enterprise" = "xyes"])
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([linux/version.h endian.h])
...
...
@@ -85,13 +81,6 @@ AC_DEFINE(PRAGMA_PACK_PUSH,[#pragma pack(push, 1)],[Define pragma pack(push) for
AC_DEFINE(PRAGMA_PACK_POP,[#pragma pack(pop)],[Define pragma pack(pop) for your platform])
AC_DEFINE(INLINE,[static inline],[Define inline construction for your platform])
if test "x$enable_enterprise" = "xyes" ; then
AC_DEFINE(ENABLE_EC,1,Enterprise)
CFLAGS="$CFLAGS -DZRTP_ENABLE_EC=1"
fi
AC_SUBST(ENABLE_EC)
#
# Documentation
#
...
...
libs/libzrtp/include/zrtp.h
浏览文件 @
b03636f0
...
...
@@ -35,9 +35,7 @@
#include "zrtp_legal.h"
#include "zrtp_version.h"
#include "zrtp_iface_cache.h"
#if (defined(ZRTP_ENABLE_EC) && (ZRTP_ENABLE_EC == 1))
#include "zrtp_ec.h"
#endif
...
...
libs/libzrtp/include/zrtp_config_android.h
浏览文件 @
b03636f0
...
...
@@ -94,8 +94,6 @@
#define ZRTP_USE_BUILTIN_SCEHDULER 1
#undef ZRTP_USE_STACK_MINIM
#define ZRTP_USE_STACK_MINIM 1
#undef ZRTP_ENABLE_EC
#define ZRTP_ENABLE_EC 0
#define ALIGNMENT_32BIT_REQUIRED
#endif
/* ZRTP_WIN_CONFIG_H__ */
libs/libzrtp/include/zrtp_config_user.h
浏览文件 @
b03636f0
...
...
@@ -122,10 +122,6 @@
# endif
#endif
#ifndef ZRTP_ENABLE_EC
#define ZRTP_ENABLE_EC 1
#endif
#ifndef ZRTP_DEBUG_WITH_PJSIP
#define ZRTP_DEBUG_WITH_PJSIP 0
#endif
...
...
libs/libzrtp/include/zrtp_crypto.h
浏览文件 @
b03636f0
...
...
@@ -15,10 +15,7 @@
#include "zrtp_error.h"
#include "zrtp_engine.h"
#include "zrtp_config_user.h"
#if (defined(ZRTP_ENABLE_EC) && (ZRTP_ENABLE_EC == 1))
#include "zrtp_ec.h"
#endif
...
...
libs/libzrtp/include/zrtp_ec.h
浏览文件 @
b03636f0
...
...
@@ -14,8 +14,6 @@
#include "zrtp_types.h"
#include "zrtp_error.h"
#if (defined(ZRTP_ENABLE_EC) && (ZRTP_ENABLE_EC == 1))
#define ZRTP_MAXECBITS 521
#define ZRTP_MAXECWORDS ((ZRTP_MAXECBITS+7)/8)
...
...
@@ -80,6 +78,4 @@ int bnSquareMod_ (struct BigNum *rslt, struct BigNum *n1, struct BigNum *mod);
}
#endif
#endif
/*ZRTP_ENABLE_EC*/
#endif
/* __ZRTP_CRYPTO_EC_H__ */
libs/libzrtp/src/zrtp.c
浏览文件 @
b03636f0
...
...
@@ -802,7 +802,6 @@ void zrtp_profile_defaults(zrtp_profile_t* profile, zrtp_global_t* zrtp)
profile
->
auth_tag_lens
[
0
]
=
ZRTP_ATL_HS32
;
profile
->
hash_schemes
[
0
]
=
ZRTP_HASH_SHA256
;
#if (defined(ZRTP_ENABLE_EC) && (ZRTP_ENABLE_EC == 1))
if
(
zrtp
&&
(
ZRTP_LICENSE_MODE_PASSIVE
==
zrtp
->
lic_mode
))
{
profile
->
pk_schemes
[
0
]
=
ZRTP_PKTYPE_DH2048
;
profile
->
pk_schemes
[
1
]
=
ZRTP_PKTYPE_EC256P
;
...
...
@@ -813,16 +812,6 @@ void zrtp_profile_defaults(zrtp_profile_t* profile, zrtp_global_t* zrtp)
profile
->
pk_schemes
[
2
]
=
ZRTP_PKTYPE_DH2048
;
}
profile
->
pk_schemes
[
3
]
=
ZRTP_PKTYPE_MULT
;
#else
if
(
zrtp
&&
(
ZRTP_LICENSE_MODE_PASSIVE
==
zrtp
->
lic_mode
))
{
profile
->
pk_schemes
[
0
]
=
ZRTP_PKTYPE_DH2048
;
profile
->
pk_schemes
[
1
]
=
ZRTP_PKTYPE_DH3072
;
}
else
{
profile
->
pk_schemes
[
0
]
=
ZRTP_PKTYPE_DH3072
;
profile
->
pk_schemes
[
1
]
=
ZRTP_PKTYPE_DH2048
;
}
profile
->
pk_schemes
[
2
]
=
ZRTP_PKTYPE_MULT
;
#endif
}
/*----------------------------------------------------------------------------*/
...
...
libs/libzrtp/src/zrtp_crypto_ec.c
浏览文件 @
b03636f0
...
...
@@ -7,8 +7,6 @@
#include "zrtp.h"
#if (defined(ZRTP_ENABLE_EC) && (ZRTP_ENABLE_EC == 1))
/* Size of extra random data to approximate a uniform distribution mod n */
#define UNIFORMBYTES 8
...
...
@@ -461,5 +459,3 @@ zrtp_status_t zrtp_ec_init_params( struct zrtp_ec_params *params, uint32_t bits
return
zrtp_status_ok
;
}
#endif
/*ZRTP_ENABLE_EC*/
libs/libzrtp/src/zrtp_crypto_ecdh.c
浏览文件 @
b03636f0
...
...
@@ -8,8 +8,6 @@
#include "zrtp.h"
#if (defined(ZRTP_ENABLE_EC) && (ZRTP_ENABLE_EC == 1))
#define _ZTU_ "zrtp ecdh"
static
unsigned
get_pbits
(
zrtp_pk_scheme_t
*
self
)
...
...
@@ -559,5 +557,3 @@ zrtp_status_t zrtp_defaults_ec_pkt(zrtp_global_t* zrtp)
return
zrtp_status_ok
;
}
#endif
/*ZRTP_ENABLE_EC*/
libs/libzrtp/src/zrtp_crypto_pk.c
浏览文件 @
b03636f0
...
...
@@ -214,9 +214,7 @@ static zrtp_status_t zrtp_dh_self_test(zrtp_pk_scheme_t *self)
}
/*----------------------------------------------------------------------------*/
#if (defined(ZRTP_ENABLE_EC) && (ZRTP_ENABLE_EC == 1))
extern
zrtp_status_t
zrtp_defaults_ec_pkt
(
zrtp_global_t
*
zrtp
);
#endif
zrtp_status_t
zrtp_defaults_pkt
(
zrtp_global_t
*
zrtp
)
{
...
...
@@ -329,11 +327,7 @@ zrtp_status_t zrtp_defaults_pkt(zrtp_global_t* zrtp)
presh
->
base
.
id
=
ZRTP_PKTYPE_PRESH
;
zrtp_comp_register
(
ZRTP_CC_PKT
,
presh
,
zrtp
);
#if (defined(ZRTP_ENABLE_EC) && (ZRTP_ENABLE_EC == 1))
return
zrtp_defaults_ec_pkt
(
zrtp
);
#else
return
zrtp_status_ok
;
#endif
}
/*----------------------------------------------------------------------------*/
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论