We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need to generate a certificate with a subject line containing multiple OU key-value pairs:
Subject: OU=certtype:instance, OU=compartment:compartment, OU=instance:instance
The problem is subsequent calls to DistinguishedName::push overwrite the previous value:
DistinguishedName::push
params.distinguished_name.push(DnType::OrganizationalUnitName, format!("certtype:{}", certtype)); params.distinguished_name.push(DnType::OrganizationalUnitName, format!("compartment:{}", compartment)); params.distinguished_name.push(DnType::OrganizationalUnitName, format!("instance:{}", instance));
This leaves me with a subject containing only the last value:
Subject: OU=instance:instance
The text was updated successfully, but these errors were encountered:
This needs a major change, maybe even a rename of the API so that users are aware that something changed.
Sorry, something went wrong.
No branches or pull requests
I need to generate a certificate with a subject line containing multiple OU key-value pairs:
The problem is subsequent calls to
DistinguishedName::push
overwrite the previous value:This leaves me with a subject containing only the last value:
The text was updated successfully, but these errors were encountered: