X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=doc%2Fcrypto%2FBIO_f_cipher.pod;h=02439cea94a0d6e550fd17be879b3be4717daf64;hb=f000f705ea00fd2b9cef45959d6c1ec4aae674a3;hp=7270c743c5ec7b3a3a0db1569908dfe257f1379d;hpb=b1ccd57b18c4c2ea6f1a1199c3afdd33eb070baa;p=oweals%2Fopenssl.git diff --git a/doc/crypto/BIO_f_cipher.pod b/doc/crypto/BIO_f_cipher.pod index 7270c743c5..02439cea94 100644 --- a/doc/crypto/BIO_f_cipher.pod +++ b/doc/crypto/BIO_f_cipher.pod @@ -2,7 +2,7 @@ =head1 NAME - BIO_f_cipher - cipher BIO +BIO_f_cipher, BIO_set_cipher, BIO_get_cipher_status, BIO_get_cipher_ctx - cipher BIO filter =head1 SYNOPSIS @@ -28,7 +28,7 @@ BIO_flush() on an encryption BIO that is being written through is used to signal that no more data is to be encrypted: this is used to flush and possibly pad the final block through the BIO. -BIO_set_cipher() sets the cipher of BIO to B using key B +BIO_set_cipher() sets the cipher of BIO B to B using key B and IV B. B should be set to 1 for encryption and zero for decryption. @@ -38,7 +38,7 @@ is a BIO_ctrl() macro which can be called to determine whether the decryption operation was successful. BIO_get_cipher_ctx() is a BIO_ctrl() macro which retrieves the internal -BIO cipher context. The retrieved context can be used in conjustion +BIO cipher context. The retrieved context can be used in conjunction with the standard cipher routines to set it up. This is useful when BIO_set_cipher() is not flexible enough for the applications needs.