Values.CustomExtensionSourceSpecifies the X.509 extension information for a certificate. Extensions present in CustomExtensions follow the ApiPassthrough template rules.
type nonrec t = {objectIdentifier : CustomObjectIdentifier.t;Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database.
*)value : Base64String1To4096.t;Specifies the base64-encoded value of the X.509 extension.
*)critical : Boolean.t option;Specifies the critical flag of the X.509 extension.
*)}val make :
?critical:??? ->
objectIdentifier:CustomObjectIdentifier.t ->
value:Base64String1To4096.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t | `String of CustomObjectIdentifier.t ])
list ]