X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fopenssl%2Fdoc%2Fcrypto%2FBIO_f_cipher.pod;fp=lib%2Fopenssl%2Fdoc%2Fcrypto%2FBIO_f_cipher.pod;h=87ab3ccc9dfac4334f6d4dbfb88a2b8bde400a4e;hb=02ed66432c92de70694700164f986190aad3cbc5;hp=02439cea94a0d6e550fd17be879b3be4717daf64;hpb=89016837dcbf2775cd15dc8cbaba00dc6379f86e;p=cassiopeia.git diff --git a/lib/openssl/doc/crypto/BIO_f_cipher.pod b/lib/openssl/doc/crypto/BIO_f_cipher.pod index 02439ce..87ab3cc 100644 --- a/lib/openssl/doc/crypto/BIO_f_cipher.pod +++ b/lib/openssl/doc/crypto/BIO_f_cipher.pod @@ -4,14 +4,16 @@ BIO_f_cipher, BIO_set_cipher, BIO_get_cipher_status, BIO_get_cipher_ctx - cipher BIO filter +=for comment multiple includes + =head1 SYNOPSIS #include #include - BIO_METHOD * BIO_f_cipher(void); - void BIO_set_cipher(BIO *b,const EVP_CIPHER *cipher, - unsigned char *key, unsigned char *iv, int enc); + const BIO_METHOD *BIO_f_cipher(void); + void BIO_set_cipher(BIO *b, const EVP_CIPHER *cipher, + unsigned char *key, unsigned char *iv, int enc); int BIO_get_cipher_status(BIO *b) int BIO_get_cipher_ctx(BIO *b, EVP_CIPHER_CTX **pctx) @@ -22,7 +24,7 @@ BIO that encrypts any data written through it, and decrypts any data read from it. It is a BIO wrapper for the cipher routines EVP_CipherInit(), EVP_CipherUpdate() and EVP_CipherFinal(). -Cipher BIOs do not support BIO_gets() or BIO_puts(). +Cipher BIOs do not support BIO_gets() or BIO_puts(). 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 @@ -48,7 +50,7 @@ When encrypting BIO_flush() B be called to flush the final block through the BIO. If it is not then the final block will fail a subsequent decrypt. -When decrypting an error on the final block is signalled by a zero +When decrypting an error on the final block is signaled by a zero return value from the read operation. A successful decrypt followed by EOF will also return zero for the final read. BIO_get_cipher_status() should be called to determine if the decrypt was successful. @@ -67,10 +69,13 @@ for failure. BIO_get_cipher_ctx() currently always returns 1. -=head1 EXAMPLES +=head1 COPYRIGHT -TBA +Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. -=head1 SEE ALSO +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +L. -TBA +=cut