aboutsummaryrefslogtreecommitdiff
path: root/gost_pmeth.c
diff options
context:
space:
mode:
authorDmitry Belyavskiy <beldmit@gmail.com>2020-05-01 12:22:43 +0300
committerDmitry Belyavskiy <beldmit@gmail.com>2020-05-01 12:22:43 +0300
commit96ca13301197c0a60962e97898bfffbb8dbf4ba5 (patch)
tree56efe85c952df0490af02ee7f6069f42154c9003 /gost_pmeth.c
parentd65fbca16e140be5ba5ea7799c543cbe579b3f0e (diff)
downloadgost-engine-96ca13301197c0a60962e97898bfffbb8dbf4ba5.zip
gost-engine-96ca13301197c0a60962e97898bfffbb8dbf4ba5.tar.gz
gost-engine-96ca13301197c0a60962e97898bfffbb8dbf4ba5.tar.bz2
Fix code aligning
Diffstat (limited to 'gost_pmeth.c')
-rw-r--r--gost_pmeth.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/gost_pmeth.c b/gost_pmeth.c
index 6442644..cac31e8 100644
--- a/gost_pmeth.c
+++ b/gost_pmeth.c
@@ -180,22 +180,22 @@ static int pkey_gost_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
static int pkey_gost_ec_ctrl_str_common(EVP_PKEY_CTX *ctx,
const char *type, const char *value)
{
- if (0 == strcmp(type, ukm_ctrl_string)) {
- unsigned char ukm_buf[32], *tmp = NULL;
- long len = 0;
- tmp = OPENSSL_hexstr2buf(value, &len);
- if (tmp == NULL)
- return 0;
-
- if (len > 32) {
- OPENSSL_free(tmp);
- GOSTerr(GOST_F_PKEY_GOST_EC_CTRL_STR_COMMON, GOST_R_CTRL_CALL_FAILED);
- return 0;
- }
- memcpy(ukm_buf, tmp, len);
-
- return pkey_gost_ctrl(ctx, EVP_PKEY_CTRL_SET_IV, len, ukm_buf);
- }
+ if (0 == strcmp(type, ukm_ctrl_string)) {
+ unsigned char ukm_buf[32], *tmp = NULL;
+ long len = 0;
+ tmp = OPENSSL_hexstr2buf(value, &len);
+ if (tmp == NULL)
+ return 0;
+
+ if (len > 32) {
+ OPENSSL_free(tmp);
+ GOSTerr(GOST_F_PKEY_GOST_EC_CTRL_STR_COMMON, GOST_R_CTRL_CALL_FAILED);
+ return 0;
+ }
+ memcpy(ukm_buf, tmp, len);
+
+ return pkey_gost_ctrl(ctx, EVP_PKEY_CTRL_SET_IV, len, ukm_buf);
+ }
return -2;
}
@@ -277,7 +277,7 @@ static int pkey_gost_ec_ctrl_str_256(EVP_PKEY_CTX *ctx,
param_nid, NULL);
}
- return pkey_gost_ec_ctrl_str_common(ctx, type, value);
+ return pkey_gost_ec_ctrl_str_common(ctx, type, value);
}
static int pkey_gost_ec_ctrl_str_512(EVP_PKEY_CTX *ctx,
@@ -286,7 +286,7 @@ static int pkey_gost_ec_ctrl_str_512(EVP_PKEY_CTX *ctx,
int param_nid = NID_undef;
if (strcmp(type, param_ctrl_string))
- return pkey_gost_ec_ctrl_str_common(ctx, type, value);
+ return pkey_gost_ec_ctrl_str_common(ctx, type, value);
if (!value)
return 0;