如何在Evolution中加密(六)

简介:
* 2.6.6.S/MIME Encryption 
* 2.6.6.S/MIME加密 
S/MIME encryption also uses a key-based approach, but it has some significant advantages in convenience and security. S/MIME uses certificates, which are similar to keys. The public portion of each certificate is held by the sender of a message and by one of several certificate authorities, who are paid to guarantee the identity of the sender and the security of the message. Evolution already recognizes a large number of certificate authorities, so when you get a message with an S/MIME certificate, your system automatically receives the public portion of the certificate and decrypts or verifies the message. 
S/MIME加密也使用基于密钥的方式,但它在便利和安全上有着一些优势。S/MIME使用证书,这是同密钥相类似的东西。每个证书的公开部分被信息的发送人和几个证书授予机构(受雇来担保发送人身份和信息安全)之一保留。Evolution已经可以识别相当多的证书授予机构,因此当你收到带 S/MIME证书的信息时,你的系统会自动接收证书的公开部分并对解密或认证信息。 
S/MIME is used most often in corporate settings. In these cases, administrators supply certificates that they have purchased from a certificate authority. In some cases, an organization can act as its own certificate authority, with or without a guarantee from a dedicated authority such as Verisign or Thawte*. In either case, the system administrator provides you with a certificate file. 
S/MIME通常被用于公司。在公司里,管理员提供从一个证书授予机构购买的证书。在一些情况下,无论有无专业授权机构担保,有些组织也能作为它自己的证书授予机构,如Verisign和Thawte。在其他情况下,系统管理员将为你提供一个证书文件。 
If you want to use S/MIME independently, you can extract an identification certificate from your Mozilla or Netscape Web browser. See the Mozilla help for more information on security certificates. 
如果你想独立使用S/MIME,你可以从你的Mozilla或Netscape网页浏览器中提取出一个认证证书。更多有关安全证书的信息请参见Mozilla帮助。 
The certificate file is a password-protected file on your computer. To use it in Evolution: 
认证文件在你计算机上是用密码保护的。在Evolution使用它: 
2.6.6.1.Adding a Signing Certificate 
2.6.6.1.添加单个证书 
1. Click Edit > Preferences, then click Certificate Tool. 
1. 点击编辑>首选项,然后点击证书。 
2. Click Import. 
2. 点击导入。 
3. Select the file to import, then click OK. 
3. 选择导入的文件,然后点击确定。 
4. Click Close. 
4. 点击关闭 
Similarly, you can add certificates that are sent to you independently of any authority by clicking the Contact Certificates tab and using the same Import tool. You can also add new certificate authorities, which have their own certificate files, in the same way. 
相类似地,通过点击联系人标签并使用相同的导入功能,你可以添加一些授予机构发给你的独立证书。你也可以通过相同的方式添加新的拥有自己证书文件的证书授予机构。
2.6.6.2.Signing or Encrypting Every Message 
2.6.6.2.签名或加密每一条信息 
After you have added your certificate, you can sign or encrypt a message by clicking Security > S/MIME Sign or S/MIMe Encrypt in the message composer. 
在你添加了你的证书之后,你就可以通过在撰写新件窗口中点击安全 > S/MIME签名或S/MIME加密来对信息进行加密或签名了。 
To have every message signed or encrypted: 
为了能对每条信息都能签名或加密: 
1.Click Tools > Options, then select the account to encrypt the messages in. 
1.点击工具 > 选项,然后选择要加密信息的账号。 
2.Click Edit, then click Security. 
2.点击编辑,然后点击安全。 
3.Click Select next to Signing Certificate and specify the path to your signing certificate. 
or 
Click Select next to Encryption Certificate and specify the path to your encryption certificate. 
3.点击选择下一个签名证书并指定签名证书所在目录 
或 
点击选择下一个加密证书并指定加密证书所在目录 
4.Select the appropriate options. 
4.选择合适的选项。 
5.Click OK. 
5.点击确定。 
6.Click Close. 

6.点击关闭



本文转自 firehare 51CTO博客,原文链接:http://blog.51cto.com/firehare/588142,如需转载请自行联系原作者

相关文章
|
安全 数据安全/隐私保护
|
算法 数据安全/隐私保护
|
Java 数据安全/隐私保护
Java实现最电话号码的简单加密源码
Java实现最电话号码的简单加密源码
20 0
|
3月前
|
存储 安全 算法
【接口加密】Java中的接口加密实践
【接口加密】Java中的接口加密实践
|
3月前
|
算法 安全 Java
Java 实现 RSA 非对称加密算法-加解密和签名验签
Java 实现 RSA 非对称加密算法-加解密和签名验签
100 0
|
Java 数据安全/隐私保护
java实现加密电话号码,有具体的加密流程注释
java实现加密电话号码,有具体的加密流程注释
31 0
|
4月前
|
存储 算法 安全
3分钟快速了解使用Java进行对称加密
对称加密算法有很多种,其中较为知名的有AES(高级加密标准)、DES(数据加密标准)以及3DES(三重数据加密算法)等。这些算法在不同的场景下有着广泛的应用,为保障数据安全提供了有力支持。
63 0
|
4月前
|
编解码 算法 安全
怎么Java进行MD5摘要加密?
MD5(Message-Digest Algorithm 5)是一种常用的摘要算法,用于将任意长度的数据转换为固定长度的摘要值(通常为128位)。MD5算法的原理是将原始数据分成若干个固定长度的块,对每个块进行一系列的数据处理,最终得到一个128位的摘要值。这个摘要值可以作为数据的唯一标识,用于验证数据的完整性和真实性。
43 1