3

Я пытаюсь создать сертификат подписи S/MIME для Outlook 2010 под Windows 7. Я вошел в Параметры ➮ Центр управления безопасностью (см. Ниже), чтобы попытаться настроить его, но когда я пытаюсь выбрать сертификат подписи, я получаю сообщение об ошибке: "Сертификат недоступен".

Как создать самозаверяющий сертификат для подписи писем?

Трастовый центр Трастовый центр

Ошибка сертификата
Ошибка сертификата

3 ответа3

5

Я использовал инструмент Microsoft MakeCert для этого.

Сначала вам нужно создать ключ CA (центра сертификации):

makecert -pe -n "CN=My Root CA" -ss root -a sha512 -sky signature -len 2048 -h 1 -cy authority -r my_ca.cer
# -pe: Mark private key as exportable - useful for backup.
# -n "CN=My Root CA": The name of the certificate. Please use an individual name and replace the "My" with your full name.
# -ss root: The store where makecert shall place the certificate (Root certificates store).
# -a sha512: The signature algorithm to use. Right now SHA512 is the maximum available.
# -sky signature: The key type (signature, not exchange).
# -len 2048: Key length in bits. You might consider generating a longer key.
# -h 1: Maximum height of the tree below this certificate. I don't use sub-CAs, so I hope that 1 is the correct value.
# -cy authority: Certificate type is CA, not end-entity.
# -r: Create a self signed certificate.
#  my_ca.cer: Name of the file to which the generated public key will be written.

Теперь вам нужно создать сертификат (ы) для подписи почты. В вашем случае вы начнете только с одного сертификата для вас:

makecert -pe -n "E=my.mail@addre.ss,CN=My eMail Signing" -a sha512 -sky exchange -cy end -ss my -eku 1.3.6.1.5.5.7.3.4 -in "My Root CA" -is root -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12 -len 2048 my_email.cer 
# -pe:Mark private key as exportable - useful for backup.
# -n "E=my.mail@addre.ss,CN=My eMail Signing": Name of the certificate. This must contain your mail address in the E entry and your name in the CN entry. You should give a useful CN, so please replace My with your full name.
# -a sha512: The signature algorithm to use. Right now SHA512 is the maximum available.
# -sky exchange: The key type (exchange, not signature).
# -cy end: Certificate type is end-entity, not CA.
# -ss my: The store where makecert shall place the certificate (My certificates store).
# -eku 1.3.6.1.5.5.7.3.4: Enhanced key usage "E-mail protection"
# -in "My Root CA": Name of the CA used to sign the generated key. Must be the same as given in "-n" in the above call to makecert.
# -is root: Store where the CA key can be found.
# -sp "Microsoft RSA SChannel Cryptographic Provider": Name of the CryptoAPI provider to use.
# -sy 12: Type of the CryptoAPI provider.
# -len 2048: Key length in bits. You might consider generating a longer key.
# my_email.cer: Name of the file to which the generated public key will be written.

Закрытый и открытый ключи будут записаны в хранилища сертификатов пользователя (в реестре) и могут быть использованы немедленно. Открытые ключи будут записаны в указанные файлы.

На вашем компьютере вы можете сразу выбрать сертификат подписи почты в вашей почтовой программе. Чтобы передать свои открытые ключи другим, вы можете дать им копию ваших открытых ключей. Для полного доверия им может понадобиться импортировать ваш ключ CA в хранилище сертификатов.

0

У меня была такая же проблема, и я запускаю CA для нашей системы. MS CA для Windows 2008 R2.

Я выдал действительный сертификат электронной почты, и он все еще не работал. Сертификат подписи не будет отображаться, но сертификат шифрования будет отображаться.

Я наконец понял, что когда вы запрашиваете сертификат, вы ДОЛЖНЫ выбрать «Пометить ключи как экспортируемые».

Как только я это сделал, все работало автоматически.

Надеюсь, это поможет.

0

Если вам не нужно, чтобы он был подписан внутренним ЦС или общедоступным ЦС, вы можете запустить программу C:\Program Files (x86)\Microsoft Office\Office14\SELFCERT.EXE , которая сгенерирует самоподписанный сертификат. ,

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .