You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 11, 2026. It is now read-only.
According to my understanding of CERTIFICATE SIGNING REQUESTS, here the SUBJECT values
(TbsData->SubjectCommon, TbsData->SubjectOrg and TbsData->SubjectCountry) must be filled in, not the ISSUER values. ISSUER values will be done by CA when it creates a CERTIFICATE
from the CERTIFICATE SIGNING REQUEST.
File: File https://github.com/microsoft/RIoT/blob/master/Reference/RIoT/RIoTCrypt/x509bldr.c
Function X509GetDERCsrTbs, Line 470:
CHK( X509AddX501Name(Context, TbsData->IssuerCommon, TbsData->IssuerOrg, TbsData->IssuerCountry));
According to my understanding of CERTIFICATE SIGNING REQUESTS, here the SUBJECT values
(TbsData->SubjectCommon, TbsData->SubjectOrg and TbsData->SubjectCountry) must be filled in, not the ISSUER values. ISSUER values will be done by CA when it creates a CERTIFICATE
from the CERTIFICATE SIGNING REQUEST.