Values_0.CustomCodeSigningSourceDescribes a custom method used to code sign a file.
type nonrec t = {signature : CodeSigningSignature.t option;The signature for the file.
*)certificateChain : CodeSigningCertificateChain.t option;The certificate chain.
*)hashAlgorithm : HashAlgorithm.t option;The hash algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses SHA256 or SHA1, so you can pass either of them based on which was used for generating the signature.
*)signatureAlgorithm : SignatureAlgorithm.t option;The signature algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses ECDSA or RSA, so you can pass either of them based on which was used for generating the signature.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `String of HashAlgorithm.t
| `Structure of
(string * [> `Blob of Signature.t | `String of CertificateName.t ])
list ])
list ]