diff options
author | tb <> | 2021-07-09 14:08:00 +0000 |
---|---|---|
committer | tb <> | 2021-07-09 14:08:00 +0000 |
commit | b93725e4359b91d9f5292a42ae32d17c36952b4b (patch) | |
tree | 720385821cf37cfc8d96781908ebf482b1ff74bb /src/lib/libcrypto/pkcs12/p12_crpt.c | |
parent | 86b940df4e56667bb259c7d37d9a09cc6c1e1925 (diff) | |
download | openbsd-b93725e4359b91d9f5292a42ae32d17c36952b4b.tar.gz openbsd-b93725e4359b91d9f5292a42ae32d17c36952b4b.tar.bz2 openbsd-b93725e4359b91d9f5292a42ae32d17c36952b4b.zip |
KNF: remove whitespace between functions and parentheses
Diffstat (limited to 'src/lib/libcrypto/pkcs12/p12_crpt.c')
-rw-r--r-- | src/lib/libcrypto/pkcs12/p12_crpt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/pkcs12/p12_crpt.c b/src/lib/libcrypto/pkcs12/p12_crpt.c index d1f7d71fd3..d21c9c178a 100644 --- a/src/lib/libcrypto/pkcs12/p12_crpt.c +++ b/src/lib/libcrypto/pkcs12/p12_crpt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: p12_crpt.c,v 1.14 2017/01/29 17:49:23 beck Exp $ */ | 1 | /* $OpenBSD: p12_crpt.c,v 1.15 2021/07/09 14:07:59 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 1999. | 3 | * project 1999. |
4 | */ | 4 | */ |
@@ -101,13 +101,13 @@ PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, | |||
101 | } | 101 | } |
102 | salt = pbe->salt->data; | 102 | salt = pbe->salt->data; |
103 | saltlen = pbe->salt->length; | 103 | saltlen = pbe->salt->length; |
104 | if (!PKCS12_key_gen (pass, passlen, salt, saltlen, PKCS12_KEY_ID, | 104 | if (!PKCS12_key_gen(pass, passlen, salt, saltlen, PKCS12_KEY_ID, |
105 | iter, EVP_CIPHER_key_length(cipher), key, md)) { | 105 | iter, EVP_CIPHER_key_length(cipher), key, md)) { |
106 | PKCS12error(PKCS12_R_KEY_GEN_ERROR); | 106 | PKCS12error(PKCS12_R_KEY_GEN_ERROR); |
107 | PBEPARAM_free(pbe); | 107 | PBEPARAM_free(pbe); |
108 | return 0; | 108 | return 0; |
109 | } | 109 | } |
110 | if (!PKCS12_key_gen (pass, passlen, salt, saltlen, PKCS12_IV_ID, | 110 | if (!PKCS12_key_gen(pass, passlen, salt, saltlen, PKCS12_IV_ID, |
111 | iter, EVP_CIPHER_iv_length(cipher), iv, md)) { | 111 | iter, EVP_CIPHER_iv_length(cipher), iv, md)) { |
112 | PKCS12error(PKCS12_R_IV_GEN_ERROR); | 112 | PKCS12error(PKCS12_R_IV_GEN_ERROR); |
113 | PBEPARAM_free(pbe); | 113 | PBEPARAM_free(pbe); |