blob: 6e6a3e7ca943bee9732ee699a7c9fcdb877b3613 [file] [log] [blame]
#pragma once
#include <cstddef>
/* The prefix of the DBus busname to own */
inline constexpr char busNamePrefix[] = "xyz.openbmc_project.Certs.Manager";
/* The prefix of the certificate manager DBus object name */
inline constexpr char objectNamePrefix[] = "/xyz/openbmc_project/certs";
/* The default name of the CSR file */
inline constexpr char defaultCSRFileName[] = "domain.csr";
/* The default name of the private key file. */
inline constexpr char defaultPrivateKeyFileName[] = "privkey.pem";
/* The default name of the rsa private key file. */
inline constexpr char defaultRSAPrivateKeyFileName[] = ".rsaprivkey.pem";
/* The maximum number of Authority certificates the service allows. */
inline constexpr size_t maxNumAuthorityCertificates = @authority_limit@;