File: README.SSL

package info (click to toggle)
w3m 0.5.3%2Bgit20230121-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,568 kB
  • sloc: ansic: 59,210; sh: 4,331; perl: 4,217; javascript: 2,315; makefile: 913; cpp: 869; ruby: 776; awk: 78; sed: 16
file content (52 lines) | stat: -rw-r--r-- 2,164 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Support for SSL
                                                   (2000/11/07) Katsunari Okabe
                                                        okabek@guitar.ocn.ne.jp
                                                   (2001/12/27)  Fumitoshi Ukai
                                                              ukai@debian.or.jp


* Install the OpenSSL Library before building w3m
   to provide SSL support.

* The configure script can automatically detect if the
   OpenSSL Library has been installed. If the script does
   not run, confirm the USE_SSL macro has been defined in
   config.h. Furthermore, if you want to enable SSL support
   confirm that the USE_SSL_VERIFY macro has been defined as well.
   If the compiler throws an error, confirm the `-lssl -lcrypto`
   linker flags are set, as well as the '-I(SSLeay/OpenSSL
   header directory)` flag.

   SSL Support can be validated from the "SSL Settings" section
   of the Option Setting Panel.

 * The following settings are available for SSL:

   ssl_forbid_method
       List of methods you can forbid (2: SSLv2: 3: SSLv3, t: TLSv1.0,
       5: TLSv1.1, 6: TLSv1.2, 7: TLSv1.3)
       (default is 2, 3, t, 5)
   ssl_min_version
       Lowest SSL Version, OpenSSL 1.1 and later, options are: (all,
       TLSv1.0, TLSv1.1, TLSv1.2, TLSv1.3) (default is not set)
   ssl_cipher
       Prior to TLSv1.2 the SSL cipher (example: DEFAULT:@SECLEVEL=2)
       (default for OpenSSL 1.1 and later is not set.
       Otherwise DEFAULT:!LOW:!RC4:!EXP).
   ssl_verify_server ON/OFF
       Verify the SSL server (default: ON)
   ssl_cert_file filename
       SSL client PEM certificate (default is not set)
   ssl_key_file
       SSL client PEM secret key (default is not set)
   ssl_ca_path directory
       SSL CA PEM certificate directory (default is not set)
   ssl_ca_file filename
       SSL CA PEM certificate filename (default is not set,
       set when you run the configure script)
   ssl_ca_default ON/OFF
       Use the standard location for the SSL CA PEM certificate file
       (default ON)

 * If your environment uses the EGD (Entropy Gathering Daemon),
   please check the USE_EGD macro.