发布时间:2010-3-12 15:35
分类名称:PKI
以下来自MSDN,中文是我添加的注释:
Public Key Cryptography Standards
(PKCS) A set of syntax standards for public key cryptography covering security functions, including methods for signing da
注:Public Key Cryptography,不是说用Public key来做加密。而是指的一个统一的加密标准。
Private Key
1. encrypt symmetric session key (看似没啥用,一般都是对方的公钥加密session key,然后传给对方,对方用私钥解密)
2. digitally sign a message
3. decrypt a message that has been encrypted by the correponding public key.
Public Key
1. decrypt symmetric session key (看似没有,因为公钥是公开的,数据被窃取到,对方就可以用公钥进行解密操作)
2. verify a signature
3. encrypt message (这个message最好是session key,这样只有拥有私钥的才能解密)
public/private key pair
A set of cryptographic keys used for public key cryptography. For each user, a CSP usually maintains two public/private key pairs: an exchange key pair and a digital signature key pair. Both key pairs are maintained from session to session.
exchange key pair
A public/private key pair used to encrypt session keys so that they can be safely stored and exchanged with other users. Exchange key pairs are created by calling the CryptGenKey function.
注:他这里说是用来加密session key的,但它明明是个pair,怎么用pair加密session key呢。可以设想,它使用public 还是 private加密的呢?由于public key在大多数csp中都能导出,为了安全,我们应该做成用public key加密,这样private key无法导出,而且只能用private key进行解密。(反过来说,如果用private key加密,那么就得public key解密。这样我一旦导出public key,我就能解密信息了。除非public key也无法导出,那就随便了。嘿嘿)
signature key pair
The public/private key pair used for authenticating (digitally signing) messages. Signature key pairs are created by calling CryptGenKey.
MSDN也是说用public key加密session key,用private key 来解密。用private key 签名,用public key验签。见下面俩段内容。
public key encryption
Encryption that uses a pair of keys, on
public key algorithm
An asymmetric cipher that uses two keys, on以下是对称密钥,对称算法的解释,引自MSDN 2008。
symmetric algorithm
A cryptographic algorithm that typically uses a single key, often referred to as a session key, for encryption and decryption. Symmetric algorithms can be divided into two categories, stream algorithms and block algorithms
stream cipher
A cipher that serially encrypts da
block cipher
A cipher algorithm that encrypts da
symmetric encryption
Encryption that uses a single key for both encryption and decryption. Symmetric encryption is preferred when encrypting large amounts of da
symmetric key
A single key used for both encryption and decryption. Session keys are usually symmetric.
salt value
Random da