Deleted Added
full compact
SSL_CIPHER_get_name.pod (72613) SSL_CIPHER_get_name.pod (76866)
1=pod
2
3=head1 NAME
4
5SSL_CIPHER_get_name, SSL_CIPHER_get_bits, SSL_CIPHER_get_version, SSL_CIPHER_description - get SSL_CIPHER properties
6
7=head1 SYNOPSIS
8

--- 27 unchanged lines hidden (view full) ---

36=head1 NOTES
37
38The number of bits processed can be different from the secret bits. An
39export cipher like e.g. EXP-RC4-MD5 has only 40 secret bits. The algorithm
40does use the full 128 bits (which would be returned for B<alg_bits>), of
41which however 88bits are fixed. The search space is hence only 40 bits.
42
43The string returned by SSL_CIPHER_description() in case of success consists
1=pod
2
3=head1 NAME
4
5SSL_CIPHER_get_name, SSL_CIPHER_get_bits, SSL_CIPHER_get_version, SSL_CIPHER_description - get SSL_CIPHER properties
6
7=head1 SYNOPSIS
8

--- 27 unchanged lines hidden (view full) ---

36=head1 NOTES
37
38The number of bits processed can be different from the secret bits. An
39export cipher like e.g. EXP-RC4-MD5 has only 40 secret bits. The algorithm
40does use the full 128 bits (which would be returned for B<alg_bits>), of
41which however 88bits are fixed. The search space is hence only 40 bits.
42
43The string returned by SSL_CIPHER_description() in case of success consists
44of cleartext information seperated by one or more blanks in the following
44of cleartext information separated by one or more blanks in the following
45sequence:
46
47=over 4
48
49=item <ciphername>
50
51Textual representation of the cipher name.
52

--- 7 unchanged lines hidden (view full) ---

60B<RSA(1024)>), B<DH> (for export ciphers as B<DH(512)> or B<DH(1024)>),
61B<DH/RSA>, B<DH/DSS>, B<Fortezza>.
62
63=item Au=<authentication>
64
65Authentication method: B<RSA>, B<DSS>, B<DH>, B<None>. None is the
66representation of anonymous ciphers.
67
45sequence:
46
47=over 4
48
49=item <ciphername>
50
51Textual representation of the cipher name.
52

--- 7 unchanged lines hidden (view full) ---

60B<RSA(1024)>), B<DH> (for export ciphers as B<DH(512)> or B<DH(1024)>),
61B<DH/RSA>, B<DH/DSS>, B<Fortezza>.
62
63=item Au=<authentication>
64
65Authentication method: B<RSA>, B<DSS>, B<DH>, B<None>. None is the
66representation of anonymous ciphers.
67
68=item Enc=<symmectric encryption method>
68=item Enc=
69
70Encryption method with number of secret bits: B<DES(40)>, B<DES(56)>,
71B<3DES(168)>, B<RC4(40)>, B<RC4(56)>, B<RC4(64)>, B<RC4(128)>,
72B<RC2(40)>, B<RC2(56)>, B<RC2(128)>, B<IDEA(128)>, B<Fortezza>, B<None>.
73
74=item Mac=<message authentication code>
75
76Message digest: B<MD5>, B<SHA1>.

--- 36 unchanged lines hidden ---
69
70Encryption method with number of secret bits: B<DES(40)>, B<DES(56)>,
71B<3DES(168)>, B<RC4(40)>, B<RC4(56)>, B<RC4(64)>, B<RC4(128)>,
72B<RC2(40)>, B<RC2(56)>, B<RC2(128)>, B<IDEA(128)>, B<Fortezza>, B<None>.
73
74=item Mac=<message authentication code>
75
76Message digest: B<MD5>, B<SHA1>.

--- 36 unchanged lines hidden ---