| 
									
										
										
										
											2000-09-11 09:04:09 +08:00
										 |  |  | =pod | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NAME | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 04:24:56 +08:00
										 |  |  | BIO_f_cipher, BIO_set_cipher, BIO_get_cipher_status, BIO_get_cipher_ctx - cipher BIO filter | 
					
						
							| 
									
										
										
										
											2000-09-11 09:04:09 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 SYNOPSIS | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-29 23:10:59 +08:00
										 |  |  | =for openssl multiple includes | 
					
						
							| 
									
										
										
										
											2016-11-11 16:33:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-11 09:04:09 +08:00
										 |  |  |  #include <openssl/bio.h> | 
					
						
							|  |  |  |  #include <openssl/evp.h> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-20 20:11:46 +08:00
										 |  |  |  const BIO_METHOD *BIO_f_cipher(void); | 
					
						
							| 
									
										
										
										
											2021-10-07 11:40:49 +08:00
										 |  |  |  int BIO_set_cipher(BIO *b, const EVP_CIPHER *cipher, | 
					
						
							|  |  |  |                     const unsigned char *key, const unsigned char *iv, int enc); | 
					
						
							| 
									
										
										
										
											2020-07-15 16:26:35 +08:00
										 |  |  |  int BIO_get_cipher_status(BIO *b); | 
					
						
							|  |  |  |  int BIO_get_cipher_ctx(BIO *b, EVP_CIPHER_CTX **pctx); | 
					
						
							| 
									
										
										
										
											2000-09-11 09:04:09 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 DESCRIPTION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BIO_f_cipher() returns the cipher BIO method. This is a filter | 
					
						
							|  |  |  | 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(). | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-20 20:11:46 +08:00
										 |  |  | Cipher BIOs do not support BIO_gets() or BIO_puts(). | 
					
						
							| 
									
										
										
										
											2000-09-11 09:04:09 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-27 21:02:46 +08:00
										 |  |  | BIO_set_cipher() sets the cipher of BIO B<b> to B<cipher> using key B<key> | 
					
						
							| 
									
										
										
										
											2000-09-11 09:04:09 +08:00
										 |  |  | and IV B<iv>. B<enc> should be set to 1 for encryption and zero for | 
					
						
							|  |  |  | decryption. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | When reading from an encryption BIO the final block is automatically | 
					
						
							|  |  |  | decrypted and checked when EOF is detected. BIO_get_cipher_status() | 
					
						
							|  |  |  | 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 | 
					
						
							| 
									
										
										
										
											2000-09-16 23:39:28 +08:00
										 |  |  | BIO cipher context. The retrieved context can be used in conjunction | 
					
						
							| 
									
										
										
										
											2000-09-11 09:04:09 +08:00
										 |  |  | with the standard cipher routines to set it up. This is useful when | 
					
						
							|  |  |  | BIO_set_cipher() is not flexible enough for the applications needs. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NOTES | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | When encrypting BIO_flush() B<must> be called to flush the final block | 
					
						
							|  |  |  | through the BIO. If it is not then the final block will fail a subsequent | 
					
						
							|  |  |  | decrypt. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-14 02:05:13 +08:00
										 |  |  | When decrypting an error on the final block is signaled by a zero | 
					
						
							| 
									
										
										
										
											2000-09-11 09:04:09 +08:00
										 |  |  | 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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | As always, if BIO_gets() or BIO_puts() support is needed then it can | 
					
						
							|  |  |  | be achieved by preceding the cipher BIO with a buffering BIO. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 RETURN VALUES | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BIO_f_cipher() returns the cipher BIO method. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-07 11:40:49 +08:00
										 |  |  | BIO_set_cipher() returns 1 for success and 0 for failure. | 
					
						
							| 
									
										
										
										
											2000-09-11 09:04:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-07 11:40:49 +08:00
										 |  |  | BIO_get_cipher_status() returns 1 for a successful decrypt and <=0 | 
					
						
							| 
									
										
										
										
											2000-09-11 09:04:09 +08:00
										 |  |  | for failure. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-07 11:40:49 +08:00
										 |  |  | BIO_get_cipher_ctx() returns 1 for success and <=0 for failure. | 
					
						
							| 
									
										
										
										
											2000-09-11 09:04:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | =head1 COPYRIGHT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-06 20:22:30 +08:00
										 |  |  | Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-06 21:04:44 +08:00
										 |  |  | Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  | in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  | L<https://www.openssl.org/source/license.html>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =cut |