AcmeDirectory

public struct AcmeDirectory
extension AcmeDirectory: Sendable
extension AcmeDirectory: Equatable, Hashable

Holds URLs of all the standard ACME endpoint supported on an ACME server.

See

See [core_crypto::e2e_identity::types::E2eiAcmeDirectory]
  • URL for fetching a new nonce. Use this only for creating a new account.

    Declaration

    Swift

    public var newNonce: String
  • URL for creating a new account.

    Declaration

    Swift

    public var newAccount: String
  • URL for creating a new order.

    Declaration

    Swift

    public var newOrder: String
  • Revocation URL

    Declaration

    Swift

    public var revokeCert: String
  • Undocumented

    Declaration

    Swift

    public init(
        /**
         * URL for fetching a new nonce. Use this only for creating a new account.
         */newNonce: String, 
        /**
         * URL for creating a new account.
         */newAccount: String, 
        /**
         * URL for creating a new order.
         */newOrder: String, 
        /**
         * Revocation URL
         */revokeCert: String)
  • Declaration

    Swift

    public static func == (lhs: AcmeDirectory, rhs: AcmeDirectory) -> Bool
  • Declaration

    Swift

    public func hash(into hasher: inout Hasher)