Skip to content

Commit

Permalink
[reformat]
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Bodilis committed May 10, 2024
1 parent 6f3f8ae commit bdd6d8f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crypto/cipher/aes_gcm_ossl.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,8 @@ static srtp_err_status_t srtp_aes_gcm_openssl_get_tag(void *cv,
/*
* Retreive the tag
*/
if (!EVP_CIPHER_CTX_ctrl(c->ctx, EVP_CTRL_GCM_GET_TAG, (int)c->tag_len, buf)) {
if (!EVP_CIPHER_CTX_ctrl(c->ctx, EVP_CTRL_GCM_GET_TAG, (int)c->tag_len,
buf)) {
return (srtp_err_status_algo_fail);
}

Expand Down

0 comments on commit bdd6d8f

Please sign in to comment.