projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3d76ced
)
Corrected exchanged parameters in example for EVP_EncryptInit_ex()
author
Lutz Jänicke
<jaenicke@openssl.org>
Fri, 18 Oct 2002 09:46:01 +0000
(09:46 +0000)
committer
Lutz Jänicke
<jaenicke@openssl.org>
Fri, 18 Oct 2002 09:46:01 +0000
(09:46 +0000)
Submitted by: "Marcus Carey" <marcus.carey@verizon.net>
Reviewed by:
PR: 265
doc/crypto/EVP_EncryptInit.pod
patch
|
blob
|
history
diff --git
a/doc/crypto/EVP_EncryptInit.pod
b/doc/crypto/EVP_EncryptInit.pod
index 75cceb1ca264ea7af9e695ba4d8c39a717ff5497..daf57e5895f1cdb4ed3e0dc15798f697ac995095 100644
(file)
--- a/
doc/crypto/EVP_EncryptInit.pod
+++ b/
doc/crypto/EVP_EncryptInit.pod
@@
-419,7
+419,7
@@
Encrypt a string using blowfish:
EVP_CIPHER_CTX ctx;
FILE *out;
EVP_CIPHER_CTX_init(&ctx);
- EVP_EncryptInit_ex(&ctx,
NULL, EVP_bf_cbc()
, key, iv);
+ EVP_EncryptInit_ex(&ctx,
EVP_bf_cbc(), NULL
, key, iv);
if(!EVP_EncryptUpdate(&ctx, outbuf, &outlen, intext, strlen(intext)))
{