forge
forge copied to clipboard
Support authority info access x509 v3 section creation through extensions
This feature would allow forge users to specify the Authority Info Access
section as described by the OpenSSL organization in their x509 v3 manual page.
The user could create a list of access descriptions for either OCSP servers or CA Issuers by adding an entry looking like this in the extensions array:
{
name: 'authorityInfoAccess',
accessDescriptions: [
{
accessMethod: 'ocsp',
accessLocation: 'http://ocsp.example.com'
},
{
accessMethod: 'caIssuers',
accessLocation: 'http://authority.example.com/servicesca.der'
}
]
}
great feature.Thanks @SevanMelemedjian . I can not wait to use it :)
Hello @davidlehn , any chance to get this merge ?
Thank you.