• <ul id="cgeq2"></ul>
  • 歡迎您光臨深圳塔燈網絡科技有限公司!
    電話圖標 余先生:13699882642

    網站百科

    為您解碼網站建設的點點滴滴

    【譯】如何創建SSL自簽名證書

    發表日期:2017-12 文章編輯:小燈 瀏覽次數:4006

    SSL采用被我們熟知不對稱加密(asymmetric cryptography)
    SSL makes use of what is known as asymmetric cryptography, commonly referred to as public key cryptography (PKI). With public key cryptography, two keys are created, one public, one private. Anything encrypted with either key can only be decrypted with its corresponding key. Thus if a message or data stream were encrypted with the server's private key, it can be decrypted only using its corresponding public key, ensuring that the data only could have come from the server.
    If SSL utilizes public key cryptography to encrypt the data stream traveling over the Internet, why is a certificate necessary? The technical answer to that question is that a certificate is not really necessary- the data is secure and cannot easily be decrypted by a third party. However, certificates do serve a crucial role in the communication process. The certificate, signed by a trusted Certificate Authority (CA), ensures that the certificate holder is really who he claims to be. Without a trusted signed certificate, your data may be encrypted, however, the party you are communicating with may not be whom you think. Without certificates, impersonation attacks would be much more common.

    Step 1: Generate a Private Key
    The openssl toolkit is used to generate an RSA Private Key and CSR (Certificate Signing Request). It can also be used to generate self-signed certificates which can be used for testing purposes or internal usage.
    The first step is to create your RSA Private Key. This key is a 1024 bit RSA key which is encrypted using Triple-DES and stored in a PEM format so that it is readable as ASCII text.
    openssl genrsa -des3 -out server.key 1024Generating RSA private key, 1024 bit long modulus.........................................................++++++........++++++e is 65537 (0x10001)Enter PEM pass phrase:Verifying password - Enter PEM pass phrase:

    Step 2: Generate a CSR (Certificate Signing Request)
    Once the private key is generated a Certificate Signing Request can be generated. The CSR is then used in one of two ways. Ideally, the CSR will be sent to a Certificate Authority, such as Thawte or Verisign who will verify the identity of the requestor and issue a signed certificate. The second option is to self-sign the CSR, which will be demonstrated in the next section.
    During the generation of the CSR, you will be prompted for several pieces of information. These are the X.509 attributes of the certificate. One of the prompts will be for "Common Name (e.g., YOUR name)". It is important that this field be filled in with the fully qualified domain name of the server to be protected by SSL. If the website to be protected will be https://public.akadia.com, then enter public.akadia.com at this prompt. The command to generate the CSR is as follows:
    openssl req -new -key server.key -out server.csrCountry Name (2 letter code) [GB]
    :CHState or Province Name (full name) [Berkshire]
    :BernLocality Name (eg, city) [Newbury]
    :OberdiessbachOrganization Name (eg, company) [My Company Ltd]
    :Akadia AGOrganizational Unit Name (eg, section) []
    :Information TechnologyCommon Name (eg, your name or your server's hostname) []
    :public.akadia.comEmail Address []
    :martin dot zahn at akadia dot chPlease enter the following 'extra' attributesto be sent with your certificate requestA challenge password []:An optional company name []:

    Step 3: Remove Passphrase from Key
    One unfortunate side-effect of the pass-phrased private key is that Apache will ask for the pass-phrase each time the web server is started. Obviously this is not necessarily convenient as someone will not always be around to type in the pass-phrase, such as after a reboot or crash. mod_ssl includes the ability to use an external program in place of the built-in pass-phrase dialog, however, this is not necessarily the most secure option either. It is possible to remove the Triple-DES encryption from the key, thereby no longer needing to type in a pass-phrase. If the private key is no longer encrypted, it is critical that this file only be readable by the root user! If your system is ever compromised and a third party obtains your unencrypted private key, the corresponding certificate will need to be revoked. With that being said, use the following command to remove the pass-phrase from the key:
    cp server.key server.key.orgopenssl rsa -in server.key.org -out server.key
    The newly created server.key file has no more passphrase in it.
    -rw-r--r-- 1 root root 745 Jun 29 12:19 server.csr-rw-r--r-- 1 root root 891 Jun 29 13:22 server.key-rw-r--r-- 1 root root 963 Jun 29 13:22 server.key.org

    Step 4: Generating a Self-Signed Certificate
    At this point you will need to generate a self-signed certificate because you either don't plan on having your certificate signed by a CA, or you wish to test your new SSL implementation while the CA is signing your certificate. This temporary certificate will generate an error in the client browser to the effect that the signing certificate authority is unknown and not trusted.
    To generate a temporary certificate which is good for 365 days, issue the following command:
    openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crtSignature oksubject=/C=CH/ST=Bern/L=Oberdiessbach/O=Akadia AG/OU=InformationTechnology/CN=public.akadia.com/Email=martin dot zahn at akadia dot chGetting Private key

    Step 5: Installing the Private Key and Certificate
    When Apache with mod_ssl is installed, it creates several directories in the Apache config directory. The location of this directory will differ depending on how Apache was compiled.
    cp server.crt /usr/local/apache/conf/ssl.crtcp server.key /usr/local/apache/conf/ssl.key

    Step 6: Configuring SSL Enabled Virtual Hosts
    SSLEngine onSSLCertificateFile /usr/local/apache/conf/ssl.crt/server.crtSSLCertificateKeyFile /usr/local/apache/conf/ssl.key/server.keySetEnvIf User-Agent ".MSIE." nokeepalive ssl-unclean-shutdownCustomLog logs/ssl_request_log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x "%r" %b"**

    Step 7: Restart Apache and Test
    /etc/init.d/httpd stop/etc/init.d/httpd stop
    https://public.akadia.com

    http://www.akadia.com/services/ssh_test_certificate.html


    本頁內容由塔燈網絡科技有限公司通過網絡收集編輯所得,所有資料僅供用戶學習參考,本站不擁有所有權,如您認為本網頁中由涉嫌抄襲的內容,請及時與我們聯系,并提供相關證據,工作人員會在5工作日內聯系您,一經查實,本站立刻刪除侵權內容。本文鏈接:http://www.juherenli.com/20528.html
    相關開發語言
     八年  行業經驗

    多一份參考,總有益處

    聯系深圳網站公司塔燈網絡,免費獲得網站建設方案及報價

    咨詢相關問題或預約面談,可以通過以下方式與我們聯系

    業務熱線:余經理:13699882642

    Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.    

    依依成人精品视频在线观看 | 任我爽橹在线精品视频| 人妻无码精品久久亚瑟影视| 精品无码av一区二区三区| 亚洲精品视频免费观看| 久久这里只精品99re66| 无码人妻精品一区二区在线视频 | 二区久久国产乱子伦免费精品| 亚洲精品久久无码av片俺去也| 久久99精品久久久久久首页| 伊人久久大香线蕉精品不卡| 亚洲av无码成人精品区一本二本| 久久九九精品国产av片国产| 国产精品九九久久免费视频| 孩交精品xxxx视频视频| 精品国产一区二区三区不卡| 久久久久久久久久国产精品免费| 亚洲精品无码av天堂| 另类国产精品一区二区 | 亚洲精品国产综合久久久久紧| 亚洲国产精品久久久久婷婷老年 | 久久精品视频16| 久久久久成人精品无码| 国产精品jizz在线观看免费| 亚洲av永久无码精品秋霞电影秋| 98精品国产高清在线看入口| 精品亚洲综合在线第一区| 国产精品熟女福利久久AV| 精品小视频在线观看| 国产精品无码AV不卡| 亚洲精品无码专区在线| 97久久国产亚洲精品超碰热| 精品亚洲成a人片在线观看少妇| 国产精品免费观看调教网| 久久久不卡国产精品一区二区| 麻豆人妻少妇精品无码专区| 日本精品一区二区三本中文| 少妇人妻偷人精品无码AV| 国产成人精品日本亚洲专区6| 精品国产aⅴ无码一区二区| 2022国产精品视频|