diff options
| author | miod <> | 2014-07-13 15:42:42 +0000 |
|---|---|---|
| committer | miod <> | 2014-07-13 15:42:42 +0000 |
| commit | 2c3b7f8b200d039470bd0a6c3a6aee84efead2d0 (patch) | |
| tree | 74050903722dacddb717e47b332eb7e0ac572e58 /src/lib/libcrypto/doc/EVP_PKEY_decrypt.pod | |
| parent | b5437409086d8103d0a936c1829053b21f0dab6a (diff) | |
| download | openbsd-2c3b7f8b200d039470bd0a6c3a6aee84efead2d0.tar.gz openbsd-2c3b7f8b200d039470bd0a6c3a6aee84efead2d0.tar.bz2 openbsd-2c3b7f8b200d039470bd0a6c3a6aee84efead2d0.zip | |
OPENSSL_{malloc,free} -> {malloc,free}
Diffstat (limited to 'src/lib/libcrypto/doc/EVP_PKEY_decrypt.pod')
| -rw-r--r-- | src/lib/libcrypto/doc/EVP_PKEY_decrypt.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/doc/EVP_PKEY_decrypt.pod b/src/lib/libcrypto/doc/EVP_PKEY_decrypt.pod index 197878eff7..d22b900024 100644 --- a/src/lib/libcrypto/doc/EVP_PKEY_decrypt.pod +++ b/src/lib/libcrypto/doc/EVP_PKEY_decrypt.pod | |||
| @@ -67,7 +67,7 @@ Decrypt data using OAEP (for RSA keys): | |||
| 67 | if (EVP_PKEY_decrypt(ctx, NULL, &outlen, in, inlen) <= 0) | 67 | if (EVP_PKEY_decrypt(ctx, NULL, &outlen, in, inlen) <= 0) |
| 68 | /* Error */ | 68 | /* Error */ |
| 69 | 69 | ||
| 70 | out = OPENSSL_malloc(outlen); | 70 | out = malloc(outlen); |
| 71 | 71 | ||
| 72 | if (!out) | 72 | if (!out) |
| 73 | /* malloc failure */ | 73 | /* malloc failure */ |
