mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
For #774, refine code style
This commit is contained in:
parent
01d5e4da17
commit
ac0e27b936
1 changed files with 45 additions and 39 deletions
|
@ -45,13 +45,16 @@ using namespace _srs_internal;
|
||||||
#include <openssl/dh.h>
|
#include <openssl/dh.h>
|
||||||
|
|
||||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||||
|
|
||||||
static HMAC_CTX *HMAC_CTX_new(void)
|
static HMAC_CTX *HMAC_CTX_new(void)
|
||||||
{
|
{
|
||||||
HMAC_CTX *ctx = (HMAC_CTX *)malloc(sizeof(*ctx));
|
HMAC_CTX *ctx = (HMAC_CTX *)malloc(sizeof(*ctx));
|
||||||
if (ctx != NULL)
|
if (ctx != NULL) {
|
||||||
HMAC_CTX_init(ctx);
|
HMAC_CTX_init(ctx);
|
||||||
|
}
|
||||||
return ctx;
|
return ctx;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void HMAC_CTX_free(HMAC_CTX *ctx)
|
static void HMAC_CTX_free(HMAC_CTX *ctx)
|
||||||
{
|
{
|
||||||
if (ctx != NULL) {
|
if (ctx != NULL) {
|
||||||
|
@ -62,10 +65,12 @@ static void HMAC_CTX_free(HMAC_CTX *ctx)
|
||||||
|
|
||||||
static void DH_get0_key(const DH *dh, const BIGNUM **pub_key, const BIGNUM **priv_key)
|
static void DH_get0_key(const DH *dh, const BIGNUM **pub_key, const BIGNUM **priv_key)
|
||||||
{
|
{
|
||||||
if (pub_key != NULL)
|
if (pub_key != NULL) {
|
||||||
*pub_key = dh->pub_key;
|
*pub_key = dh->pub_key;
|
||||||
if (priv_key != NULL)
|
}
|
||||||
|
if (priv_key != NULL) {
|
||||||
*priv_key = dh->priv_key;
|
*priv_key = dh->priv_key;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g)
|
static int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g)
|
||||||
|
@ -102,6 +107,7 @@ static int DH_set_length(DH *dh, long length)
|
||||||
dh->length = length;
|
dh->length = length;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace _srs_internal
|
namespace _srs_internal
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue