Commit fb552ac6 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Change version from 0.9.9 to 1.0.0 in docs

parent 18e503f3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ The following is a list of all permitted cipher strings and their meanings.
=item B<DEFAULT>

the default cipher list. This is determined at compile time and, as of OpenSSL
0.9.9, is normally B<ALL:!aNULL:!eNULL>. This must be the first cipher string
1.0.0, is normally B<ALL:!aNULL:!eNULL>. This must be the first cipher string
specified.

=item B<COMPLEMENTOFDEFAULT>
@@ -473,6 +473,6 @@ L<s_client(1)|s_client(1)>, L<s_server(1)|s_server(1)>, L<ssl(3)|ssl(3)>

The B<COMPLENTOFALL> and B<COMPLEMENTOFDEFAULT> selection options
for cipherlist strings were added in OpenSSL 0.9.7.
The B<-V> option for the B<ciphers> command was added in OpenSSL 0.9.9.
The B<-V> option for the B<ciphers> command was added in OpenSSL 1.0.0.

=cut
+1 −1
Original line number Diff line number Diff line
@@ -596,7 +596,7 @@ No revocation checking is done on the signer's certificate.
=head1 HISTORY

The use of multiple B<-signer> options and the B<-resign> command were first
added in OpenSSL 0.9.9
added in OpenSSL 1.0.0


=cut
+1 −1
Original line number Diff line number Diff line
@@ -414,7 +414,7 @@ L<crypto(3)|crypto(3)>, L<ssl(3)|ssl(3)>, L<x509v3_config(5)|x509v3_config(5)>

The openssl(1) document appeared in OpenSSL 0.9.2.
The B<list->I<XXX>B<-commands> pseudo-commands were added in OpenSSL 0.9.3;
The B<list->I<XXX>B<-algorithms> pseudo-commands were added in OpenSSL 0.9.9;
The B<list->I<XXX>B<-algorithms> pseudo-commands were added in OpenSSL 1.0.0;
the B<no->I<XXX> pseudo-commands were added in OpenSSL 0.9.5a.
For notes on the availability of other commands, see their individual
manual pages.
+1 −1
Original line number Diff line number Diff line
@@ -439,7 +439,7 @@ structures may cause parsing errors.
=head1 HISTORY

The use of multiple B<-signer> options and the B<-resign> command were first
added in OpenSSL 0.9.9
added in OpenSSL 1.0.0


=cut
+2 −2
Original line number Diff line number Diff line
@@ -58,9 +58,9 @@ If an application needs to call BIO_gets() or BIO_puts() through
a chain containing digest BIOs then this can be done by prepending
a buffering BIO.

Before OpenSSL 0.9.9 the call to BIO_get_md_ctx() would only work if the BIO
Before OpenSSL 1.0.0 the call to BIO_get_md_ctx() would only work if the BIO
had been initialized for example by calling BIO_set_md() ). In OpenSSL
0.9.9 and later the context is always returned and the BIO is state is set
1.0.0 and later the context is always returned and the BIO is state is set
to initialized. This allows applications to initialize the context externally
if the standard calls such as BIO_set_md() are not sufficiently flexible.

Loading