Lines Matching refs:tls
26 + " --vnc-tls-cert=FILE\tThe file containing the certificate for TLS encryption\n"
27 + " --vnc-tls-key=FILE\tThe file containing the private key for TLS encryption\n"
35 + { WESTON_OPTION_STRING, "vnc-tls-cert", 0, &config.server_cert },
36 + { WESTON_OPTION_STRING, "vnc-tls-key", 0, &config.server_key },
76 + weston_log("Missing TLS certificate (--vnc-tls-cert)\n");
80 + weston_log("Missing TLS key (--vnc-tls-key)\n");
118 +\fB\-\-vnc\-tls\-key\fR=\fIfile\fR
122 +\fB\-\-vnc\-tls\-cert\fR=\fIfile\fR
135 +$ openssl genrsa -out tls.key 2048
138 +$ openssl req -new -key tls.key -out tls.csr
140 +$ openssl x509 -req -days 365 -signkey tls.key -in tls.csr -out tls.crt
144 +You will get the tls.key and tls.crt files to use with the VNC backend.