]> git.cryptolib.org Git - arm-crypto-lib.git/blobdiff - hfal/hfal-hmac.c
some white space editing
[arm-crypto-lib.git] / hfal / hfal-hmac.c
index f27105592998d7b24d3933b26b7334538c9842aa..01a6409356d4284a9cd42b92f7ba0b9525b63fe4 100644 (file)
@@ -38,13 +38,13 @@ uint8_t hfal_hmac_init(const hfdesc_t* hash_descriptor,
        ctx->desc   = hash_descriptor;
        ctx->ctx    = malloc(hash_descriptor->ctxsize_B);
        ctx->finctx = malloc(hash_descriptor->ctxsize_B);
-       if(ctx->ctx==NULL && ctx->finctx==NULL)
+       if(ctx->ctx == NULL && ctx->finctx == NULL)
                return 3;
-       if(ctx->finctx==NULL){
+       if(ctx->finctx == NULL){
                free(ctx->ctx);
                return 2;
        }
-       if(ctx->ctx==NULL){
+       if(ctx->ctx == NULL){
                free(ctx->finctx);
                return 1;
        }