Home
last modified time | relevance | path

Searched refs:zrtp_global (Results 1 – 8 of 8) sorted by relevance

/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/libzrtp/src/
H A Dzrtp_crypto_ecdsa.c69 s = zrtp_ec_random_point( self->base.zrtp_global, &P, &n, &Gx, &Gy,
158 s = zrtp_ec_random_point( self->base.zrtp_global, &P, &n, &Gx, &Gy,
585 zrtp_status_t zrtp_defaults_sig(zrtp_global_ctx_t* zrtp_global)
602 ec256p->base.zrtp_global = zrtp_global;
614 ec384p->base.zrtp_global = zrtp_global;
626 ec521p->base.zrtp_global = zrtp_global;
635 zrtp_register_comp(ZRTP_CC_SIG, ec256p, zrtp_global);
636 zrtp_register_comp(ZRTP_CC_SIG, ec384p, zrtp_global);
637 zrtp_register_comp(ZRTP_CC_SIG, ec521p, zrtp_global);
H A Dzrtp_srtp_dm.c81 zrtp_status_t zrtp_srtp_init(zrtp_global_ctx_t *zrtp_global) in zrtp_srtp_init() argument
87 zrtp_status_t zrtp_srtp_down( zrtp_global_ctx_t *zrtp_global ) in zrtp_srtp_down() argument
/dports/net/sems/sems-f89581a/core/
H A DAmZRTP.cpp47 zrtp_global_t* AmZRTP::zrtp_global; // persistent storage for libzrtp data member in AmZRTP
132 if ( zrtp_status_ok != zrtp_init(&zrtp_config, &zrtp_global) ) { in init()
152 bytes_added = zrtp_entropy_add(zrtp_global, entropy_buffer, read_bytes); in init()
173 write_bytes = zrtp_randstr(zrtp_global, entropy_buffer, 256); in shut_down()
198 zrtp_session_init( AmZRTP::zrtp_global, in initSession()
H A DAmZRTP.h63 static zrtp_global_t* zrtp_global; member
/dports/audio/baresip/baresip-0.5.8/modules/zrtp/
H A Dzrtp.c62 static zrtp_global_t *zrtp_global; variable
327 s = zrtp_session_init(zrtp_global, NULL, zid, in session_alloc()
525 s = zrtp_verified_set(zrtp_global, &local_zid, &remote_zid, in verify_sas()
625 s = zrtp_init(&zrtp_config, &zrtp_global); in module_init()
647 if (zrtp_global) { in module_close()
648 zrtp_down(zrtp_global); in module_close()
649 zrtp_global = NULL; in module_close()
/dports/net/sems/sems-f89581a/apps/dsm/mods/mod_zrtp/
H A DModZrtp.cpp203 if (zrtp_status_ok != zrtp_verified_set(AmZRTP::zrtp_global, &_zid1, &_zid2, 1)) { in EXEC_ACTION_START()
231 if (zrtp_status_ok != zrtp_verified_set(AmZRTP::zrtp_global, &_zid1, &_zid2, 0)) { in EXEC_ACTION_START()
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/libzrtp/doc/manuals/
H A Dhowto.dox319 zrtp_global_t zrtp_global; // Persistent storage for libzrtp data
343 s = zrtp_init(&zrtp_config, &zrtp_global);
360 z = zrtp_session_init( zrtp_global,
480 zrtp_down(&zrtp_global);
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/
H A Dswitch_rtp.c99 static zrtp_global_t *zrtp_global; variable
1346 status = zrtp_def_cache_store(zrtp_global); in SWITCH_STANDARD_SCHED_FUNC()
1391 zrtp_verified_set(zrtp_global, &stream->session->zid, &stream->session->peer_zid, (uint8_t)1); in zrtp_event_callback()
1524 if (zrtp_status_ok == zrtp_init(&zrtp_config, &zrtp_global)) { in switch_rtp_init()
2520 status = zrtp_def_cache_store(zrtp_global); in switch_rtp_shutdown()
2522 zrtp_down(zrtp_global); in switch_rtp_shutdown()
4485 zrtp_profile_defaults(rtp_session->zrtp_profile, zrtp_global); in switch_rtp_create()
4491 …if (zrtp_status_ok != zrtp_session_init(zrtp_global, rtp_session->zrtp_profile, zid, initiator, &r… in switch_rtp_create()