Saltar al contenido

Web-Tecnología

Proceso Solicitud Certificado Web – Thawte

  • admin 

Tipicamente usamos www.thawte.com

1) Crear cuenta para logarse en Thawte.
2) Elegir tipo certificado (diferentes niveles de seguridad,encriptación,etc…)
3) Elegir tipo de Servidor.
4) Generar CSR

  • A CSR is generated from your server (SSL) or your signing tools (code signing) and is your unique «fingerprint». The CSR includes your device’s public key, which enables authentication and encryption.
  • Problem : Generate CSR for Apache modSSL. How do I generate a csr on Apache

    Resolution

    To generate the CSR and private key in Apache modSSL, follow the instructions below:

    The utility «openssl» is used to generate the key and CSR. This utility comes with the OpenSSL package and is usually installed under /usr/local/ssl/bin. If you have installed them elsewhere you will need to adjust these instructions appropriately.

    First you have to know the Fully Qualified Domain Name (FQDN) of the website for which you want to request a certificate. When you want to access your website through https://www.yourdomain-example.comthen the FQDN of your website is  www.yourdomain-example.com; therefore, your common name will be www.yourdomain-example.com.

    Generate the Key with the following command:

    NOTE: A key length of 1024 bit is the default, but Thawte recommends the use of a 2048 bit key.
    If the request is intended for an Extended Validation certificate or a certificate with a validity period beyond December 31, 2013, the 2048 bit key length will need to be selected.

    openssl genrsa -des3 -out www.yourdomain-example.com.key 2048



    This command will generate 2048 bit RSA Private Key and stores it in the file www.yourdomain-example.com.key.It will ask you for a pass phrase: use something secure and remember it. Your certificate will be useless without the key. If you don’t want to protect your key with a pass phrase (only if you absolutely trust that server machine, and you make sure the permissions are carefully set so only you can read that key) you can leave out the -des3 option above. Also leave out -des3 option if you are running Apache on Windows as it does not work on Windows.Backup your www.yourdomain-example.com.key file and make a note of the pass phrase. A good choice is to backup this information onto a diskette or other removeable media.Note:  If you are attempting to request an Extended Validation certificate, ensure that 2048 is selected as your key-bit length.

    Generate the CSR with the following command:

    openssl req -new -key www.yourdomain-example.com.key -out www.yourdomain-example.com.csr



    This command will prompt you for the X.509 attributes of your certificate. Remember to give the namewww.yourdomain-example.com when prompted for ‘Common Name (eg, www.yourdomain-example.com)’.Do not enter your personal name here. We are requesting a certificate for a webserver, so the Common Name has to match the FQDN of your website (a requirement of the browsers).You will now have a RSA Private Key in www.yourdomain-example.com.key and a Certificate Signing Request in  www.yourdomain-example.com.csr.The file www.yourdomain-example.com.key is your secret key, and must be installed as per the instructions that will come when your certificate is issued. The file www.yourdomain-example.com.csr is your CSR, and the important bit looks something like this: —–BEGIN CERTIFICATE REQUEST—–
    Code
    —–END CERTIFICATE REQUEST—– The CSR in www.yourdomain-example.com.csr is what you now paste into the appropriate online order form.Please take a note of the format above.Please Note: Generating the private key with the passphrase will mean that the same passphrase will need to be entered after restarting the server.
    In order to allow your mod_ssl-secured Apache server work with our certificates we recommend you to use the latest versions of Apache, mod_ssl and OpenSSL.The distribution tarballs can be found at the following locations:http://www.apache.org/dist/http://www.modssl.org/source/ http://www.openssl.org/source/
    Detailed installation instructions can be found in the INSTALL files in all three packages.The utility (openssl) that you use to generate the RSA Private Key (Key) and the Certificate Signing Request (CSR) comes with Openssl and is usually installed under the directory SSL_BASE/bin where SSL_BASE is the path you specified for building Apache+mod_ssl either with the–with-openssl option or the SSL_BASE variable.

Sip on the Web

  • admin 

En el Voip2Day de este año, Iñaki Baz y José Luis Millán presentaron una novedosa ponencia sobre comunicación SIP sobre Websockets. El objetivo final es empotrar SIP en aplicaciones web.

El enlace de la recomendación en modo «draft» :

http://tools.ietf.org/html/draft-ibc-rtcweb-sip-websocket-00

Adjunto más info sobre este particular, de ambas personas, en los siguientes links:
 

http://sip-on-the-web.aliax.net/

http://voip2day.net/documentos/charlas/documentos/89.pdf