aboutsummaryrefslogtreecommitdiff
path: root/gost_md2012.c
diff options
context:
space:
mode:
authorDmitry Belyavskiy <beldmit@gmail.com>2016-01-02 23:06:56 +0300
committerDmitry Belyavskiy <beldmit@gmail.com>2016-01-02 23:06:56 +0300
commit096f193c98ffbe23686f10c834b2c42092b65954 (patch)
tree209a1ef6c4e57da480a094742248d51c11748fb0 /gost_md2012.c
parent98a1b3fcae5a4efe29774a96ce860dc52b24549b (diff)
downloadgost-engine-096f193c98ffbe23686f10c834b2c42092b65954.zip
gost-engine-096f193c98ffbe23686f10c834b2c42092b65954.tar.gz
gost-engine-096f193c98ffbe23686f10c834b2c42092b65954.tar.bz2
Formatting fix
Diffstat (limited to 'gost_md2012.c')
-rw-r--r--gost_md2012.c53
1 files changed, 25 insertions, 28 deletions
diff --git a/gost_md2012.c b/gost_md2012.c
index e20e660..098208d 100644
--- a/gost_md2012.c
+++ b/gost_md2012.c
@@ -19,8 +19,10 @@ static int gost_digest_update(EVP_MD_CTX *ctx, const void *data,
static int gost_digest_final(EVP_MD_CTX *ctx, unsigned char *md);
static int gost_digest_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from);
static int gost_digest_cleanup(EVP_MD_CTX *ctx);
-static int gost_digest_ctrl_256(EVP_MD_CTX *ctx, int type, int arg, void *ptr);
-static int gost_digest_ctrl_512(EVP_MD_CTX *ctx, int type, int arg, void *ptr);
+static int gost_digest_ctrl_256(EVP_MD_CTX *ctx, int type, int arg,
+ void *ptr);
+static int gost_digest_ctrl_512(EVP_MD_CTX *ctx, int type, int arg,
+ void *ptr);
const char micalg_256[] = "gostr3411-2012-256";
const char micalg_512[] = "gostr3411-2012-512";
@@ -102,41 +104,36 @@ static int gost_digest_cleanup(EVP_MD_CTX *ctx)
}
static int gost_digest_ctrl_256(EVP_MD_CTX *ctx, int type, int arg, void *ptr)
- {
- switch (type)
- {
+{
+ switch (type) {
case EVP_MD_CTRL_MICALG:
- {
- *((char **)ptr) = OPENSSL_malloc(strlen(micalg_256)+1);
- if (*((char **)ptr) != NULL)
{
- strcpy(*((char **)ptr), micalg_256);
- return 1;
+ *((char **)ptr) = OPENSSL_malloc(strlen(micalg_256) + 1);
+ if (*((char **)ptr) != NULL) {
+ strcpy(*((char **)ptr), micalg_256);
+ return 1;
+ }
+ return 0;
}
- return 0;
- }
default:
- return 0;
+ return 0;
}
- }
+}
static int gost_digest_ctrl_512(EVP_MD_CTX *ctx, int type, int arg, void *ptr)
- {
- switch (type)
- {
+{
+ switch (type) {
case EVP_MD_CTRL_MICALG:
- {
- *((char **)ptr) = OPENSSL_malloc(strlen(micalg_512)+1);
- if (*((char **)ptr) != NULL)
{
- strcpy(*((char **)ptr), micalg_512);
- return 1;
+ *((char **)ptr) = OPENSSL_malloc(strlen(micalg_512) + 1);
+ if (*((char **)ptr) != NULL) {
+ strcpy(*((char **)ptr), micalg_512);
+ return 1;
+ }
+ return 0;
}
- return 0;
- }
- return 1;
+ return 1;
default:
- return 0;
+ return 0;
}
- }
-
+}