summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmc <>2020-12-03 22:47:22 +0000
committerjmc <>2020-12-03 22:47:22 +0000
commit4dd2176959a6cdcb7f7ea0d8e3883f1ea62b1e55 (patch)
tree4667b299887ee2488b09545928696ff673e784be
parentcc0ddc52eadc398d5fe5711a7b86aefbf1c7f00b (diff)
downloadopenbsd-4dd2176959a6cdcb7f7ea0d8e3883f1ea62b1e55.tar.gz
openbsd-4dd2176959a6cdcb7f7ea0d8e3883f1ea62b1e55.tar.bz2
openbsd-4dd2176959a6cdcb7f7ea0d8e3883f1ea62b1e55.zip
grammar fixes from Varik "The Genuine Article!!!" Valefor;
-rw-r--r--src/lib/libcrypto/man/BIO_ctrl.36
-rw-r--r--src/lib/libcrypto/man/EVP_EncryptInit.36
-rw-r--r--src/lib/libssl/man/SSL_SESSION_new.36
3 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/libcrypto/man/BIO_ctrl.3 b/src/lib/libcrypto/man/BIO_ctrl.3
index 98c78be134..24265c0318 100644
--- a/src/lib/libcrypto/man/BIO_ctrl.3
+++ b/src/lib/libcrypto/man/BIO_ctrl.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: BIO_ctrl.3,v 1.14 2018/03/27 17:35:50 schwarze Exp $ 1.\" $OpenBSD: BIO_ctrl.3,v 1.15 2020/12/03 22:47:21 jmc Exp $
2.\" OpenSSL b055fceb Thu Oct 20 09:56:18 2016 +0100 2.\" OpenSSL b055fceb Thu Oct 20 09:56:18 2016 +0100
3.\" 3.\"
4.\" This file was written by Dr. Stephen Henson <steve@openssl.org>. 4.\" This file was written by Dr. Stephen Henson <steve@openssl.org>.
@@ -48,7 +48,7 @@
48.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 48.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49.\" OF THE POSSIBILITY OF SUCH DAMAGE. 49.\" OF THE POSSIBILITY OF SUCH DAMAGE.
50.\" 50.\"
51.Dd $Mdocdate: March 27 2018 $ 51.Dd $Mdocdate: December 3 2020 $
52.Dt BIO_CTRL 3 52.Dt BIO_CTRL 3
53.Os 53.Os
54.Sh NAME 54.Sh NAME
@@ -304,7 +304,7 @@ For example no current filter BIOs implement
304but this may still succeed if the chain ends 304but this may still succeed if the chain ends
305in a FILE or file descriptor BIO. 305in a FILE or file descriptor BIO.
306.Pp 306.Pp
307Source/sink BIOs return an 0 if they do not recognize the 307Source/sink BIOs return a 0 if they do not recognize the
308.Fn BIO_ctrl 308.Fn BIO_ctrl
309operation. 309operation.
310.Sh SEE ALSO 310.Sh SEE ALSO
diff --git a/src/lib/libcrypto/man/EVP_EncryptInit.3 b/src/lib/libcrypto/man/EVP_EncryptInit.3
index 7f9428d174..645f7a7cd2 100644
--- a/src/lib/libcrypto/man/EVP_EncryptInit.3
+++ b/src/lib/libcrypto/man/EVP_EncryptInit.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: EVP_EncryptInit.3,v 1.39 2020/01/26 08:00:31 jmc Exp $ 1.\" $OpenBSD: EVP_EncryptInit.3,v 1.40 2020/12/03 22:47:21 jmc Exp $
2.\" full merge up to: OpenSSL 5211e094 Nov 11 14:39:11 2014 -0800 2.\" full merge up to: OpenSSL 5211e094 Nov 11 14:39:11 2014 -0800
3.\" EVP_bf_cbc.pod EVP_cast5_cbc.pod EVP_idea_cbc.pod EVP_rc2_cbc.pod 3.\" EVP_bf_cbc.pod EVP_cast5_cbc.pod EVP_idea_cbc.pod EVP_rc2_cbc.pod
4.\" 7c6d372a Nov 20 13:20:01 2018 +0000 4.\" 7c6d372a Nov 20 13:20:01 2018 +0000
@@ -71,7 +71,7 @@
71.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 71.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
72.\" OF THE POSSIBILITY OF SUCH DAMAGE. 72.\" OF THE POSSIBILITY OF SUCH DAMAGE.
73.\" 73.\"
74.Dd $Mdocdate: January 26 2020 $ 74.Dd $Mdocdate: December 3 2020 $
75.Dt EVP_ENCRYPTINIT 3 75.Dt EVP_ENCRYPTINIT 3
76.Os 76.Os
77.Sh NAME 77.Sh NAME
@@ -1197,7 +1197,7 @@ openssl bf -in cipher.bin -K 000102030405060708090A0B0C0D0E0F \e
1197.Ed 1197.Ed
1198.Pp 1198.Pp
1199General encryption, decryption function example using FILE I/O and AES128 1199General encryption, decryption function example using FILE I/O and AES128
1200with an 128-bit key: 1200with a 128-bit key:
1201.Bd -literal 1201.Bd -literal
1202int 1202int
1203do_crypt(FILE *in, FILE *out, int do_encrypt) 1203do_crypt(FILE *in, FILE *out, int do_encrypt)
diff --git a/src/lib/libssl/man/SSL_SESSION_new.3 b/src/lib/libssl/man/SSL_SESSION_new.3
index 0b35c1145a..bfc68eb6a6 100644
--- a/src/lib/libssl/man/SSL_SESSION_new.3
+++ b/src/lib/libssl/man/SSL_SESSION_new.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: SSL_SESSION_new.3,v 1.7 2019/06/12 09:36:30 schwarze Exp $ 1.\" $OpenBSD: SSL_SESSION_new.3,v 1.8 2020/12/03 22:47:22 jmc Exp $
2.\" 2.\"
3.\" Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org> 3.\" Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
4.\" 4.\"
@@ -14,7 +14,7 @@
14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16.\" 16.\"
17.Dd $Mdocdate: June 12 2019 $ 17.Dd $Mdocdate: December 3 2020 $
18.Dt SSL_SESSION_NEW 3 18.Dt SSL_SESSION_NEW 3
19.Os 19.Os
20.Sh NAME 20.Sh NAME
@@ -26,7 +26,7 @@
26.Fn SSL_SESSION_new void 26.Fn SSL_SESSION_new void
27.Sh DESCRIPTION 27.Sh DESCRIPTION
28.Fn SSL_SESSION_new 28.Fn SSL_SESSION_new
29allocates and initializes an new 29allocates and initializes a new
30.Vt SSL_SESSION 30.Vt SSL_SESSION
31object. 31object.
32The reference count is set to 1, the time to the current time, and 32The reference count is set to 1, the time to the current time, and