SpecialistOff.NET / Вопросы / Статьи / Фрагменты кода / Резюме / Метки / Помощь / Файлы

Список вопросов Печать

8042727EAD7F0000:error:06800097:asn1 encoding routines:ASN1_mbstring_ncopy:string too long:crypto/asn1/a_mbstr.c:106:maxsize=2


Метки: openssl country name common name 

openssl req -x509 -nodes -days 365 -newkey rsa:4096 \
    -keyout /etc/nginx/default.key \
    -out /etc/nginx/default.crt \
    -subj '/C=default'

Ответы

RemiZOffAlex  Создано: 2025-01-29 17:03:08.123087  Обновлено: 2025-02-02 21:18:14.882501
  • Country Name (C)
  • Common Name (CN)
openssl req -x509 -nodes -days 365 -newkey rsa:4096 \
    -keyout /etc/nginx/default.key \
    -out /etc/nginx/default.crt \
    -subj '/CN=default'

Возможно будут интересны и другие вопросы