//! RFC 7030 Enrollment over Secure Transport — protocol handlers.
/// RFC 7030 §3.2.2: the well-known EST HTTP prefix.
pub const WELL_KNOWN_PREFIX: &str = "/.well-known/est";
/// Content type for PKCS#10 certificate requests (RFC 7030 §3.2.4).
pub const CONTENT_TYPE_PKCS10: &str = "application/pkcs10";
/// Content type for PKCS#7 degenerate certs-only responses.
///
/// RFC 7030 §4.1.3 and §4.2.3 both require the `smime-type=certs-only`
/// parameter on `/cacerts` and `/simpleenroll` responses so clients know
/// the payload is a degenerate certs-only CMS and not a signed message.
pub const CONTENT_TYPE_PKCS7_CERTS_ONLY: &str = "application/pkcs7-mime; smime-type=certs-only";