Home
last modified time | relevance | path

Searched full:authority (Results 1 – 25 of 266) sorted by relevance

1234567891011

/openbmc/openbmc/meta-phosphor/recipes-phosphor/certificate/
H A Dphosphor-certificate-manager_git.bb15 PACKAGECONFIG ??= "bmcweb-cert authority-cert"
18 PACKAGECONFIG[authority-cert] = "-Dconfig-authority=enabled,-Dconfig-authority=disabled"
29 …${@bb.utils.contains('PACKAGECONFIG', 'authority-cert', 'phosphor-certificate-manager@authority.se…
/openbmc/openbmc/meta-google/recipes-google/default-ca-dev/
H A Ddefault-ca-dev.bb6 SRC_URI += "file://certs/authority/"
8 FILES:${PN} = "${sysconfdir}/ssl/certs/authority/*"
11 install -d ${D}${sysconfdir}/ssl/certs/authority
12 install -m 0644 -D ${UNPACKDIR}/certs/authority/* \
13 ${D}${sysconfdir}/ssl/certs/authority
/openbmc/phosphor-certificate-manager/
H A Dmeson.options3 option('authority-limit',
6 description: 'Authority certificates limit',
19 option('config-authority',
21 description: 'Install authority cert configs',
H A Dcertificate.hpp25 authority, enumerator
35 case CertificateType::authority: in certificateTypeToString()
36 return "authority"; in certificateTypeToString()
48 if (type == "authority") in stringToCertificateType()
50 return CertificateType::authority; in stringToCertificateType()
248 * @brief Generate authority certificate file path corresponding with
251 * Prepare authority certificate file path for provided certificate.
264 * @return Authority certificate file path.
270 * @brief Generate authority certificate file path based on provided
275 * @return Authority certificate file path.
H A DREADME.md22 Valid types: client,server,authority
42 ./phosphor-certificate-manager --type=authority --endpoint=truststore \
43 --path=/etc/ssl/certs/authority --unit=bmcweb.service
H A Dcerts_manager.cpp146 if (certType == CertificateType::authority) in Manager()
175 if (certType != CertificateType::authority) in Manager()
183 // watch is not required for authority certificates in Manager()
184 if (certType != CertificateType::authority) in Manager()
254 if (certType != CertificateType::authority && !installedCerts.empty()) in install()
258 else if (certType == CertificateType::authority && in install()
285 if (certType != CertificateType::authority) in installAll()
289 "Authority certificates")); in installAll()
311 lg2::info("Starts authority list install"); in installAll()
324 for (const auto& authority : authorities) in installAll() local
[all …]
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/PLDM/Provider/Certs/Authority/
H A Dmeson.build4 sdbusplus_current_path = 'xyz/openbmc_project/PLDM/Provider/Certs/Authority'
7 'xyz/openbmc_project/PLDM/Provider/Certs/Authority/CSR__markdown'.underscorify(),
8 …input: [ '../../../../../../../yaml/xyz/openbmc_project/PLDM/Provider/Certs/Authority/CSR.interfac…
16 'xyz/openbmc_project/PLDM/Provider/Certs/Authority/CSR',
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/PLDM/Provider/Certs/Authority/CSR/
H A Dmeson.build3 sdbusplus_current_path = 'xyz/openbmc_project/PLDM/Provider/Certs/Authority/CSR'
6 'xyz/openbmc_project/PLDM/Provider/Certs/Authority/CSR__cpp'.underscorify(),
8 …'../../../../../../../../yaml/xyz/openbmc_project/PLDM/Provider/Certs/Authority/CSR.interface.yaml…
23 'xyz/openbmc_project/PLDM/Provider/Certs/Authority/CSR',
/openbmc/docs/designs/management-console/
H A DAuthorities_List_Management.md16 1. It only allows replacing a single Authority object in dbus; however, Google's
25 Phosphor-certificate-manager (only the Authority Manager) and BMCWeb will
53 When certificate type is Authority, rather than just extract the first
71 invocation, it deletes all current authority objects, takes the input PEM, and
79 No changes. Individual authority certificate can still be replaced respectively.
/openbmc/phosphor-certificate-manager/dist/
H A Dmeson.build26 if not get_option('config-authority').disabled()
27 busconfig += 'busconfig/phosphor-authority-cert-config.conf'
28 certs += 'env/authority'
31 'multi-user.target.wants/phosphor-certificate-manager@authority.service'
H A Dbmc-vmi-ca-manager.service2 Description=BMC VMI CA authority manager
10 BusName=xyz.openbmc_project.Certs.ca.authority.Manager
/openbmc/phosphor-certificate-manager/dist/env/
H A Dauthority2 #example: /xyz/openbmc_project/certs/authority/truststore
6 CERTPATH=/etc/ssl/certs/authority
12 TYPE=authority
/openbmc/linux/fs/smb/client/
H A Dcifsacl.h12 #define NUM_AUTHS (6) /* number of authority fields */
13 #define SID_MAX_SUB_AUTHORITIES (15) /* max number of sub authority fields */
48 * "S-" + 3 bytes for version field + 15 for authority field + NULL terminator
50 * For authority field, max is when all 6 values are non-zero and it must be
70 __u8 authority[NUM_AUTHS]; member
176 u8 Authority[6]; member
189 * Revision + Num (Sub)Auths + Authority + Domain (one Subauthority)
H A Dcifsacl.c128 /* The authority field is a single 48-bit number */ in sid_to_key_str()
129 id_auth_val = (unsigned long long)sidptr->authority[5]; in sid_to_key_str()
130 id_auth_val |= (unsigned long long)sidptr->authority[4] << 8; in sid_to_key_str()
131 id_auth_val |= (unsigned long long)sidptr->authority[3] << 16; in sid_to_key_str()
132 id_auth_val |= (unsigned long long)sidptr->authority[2] << 24; in sid_to_key_str()
133 id_auth_val |= (unsigned long long)sidptr->authority[1] << 32; in sid_to_key_str()
134 id_auth_val |= (unsigned long long)sidptr->authority[0] << 48; in sid_to_key_str()
137 * MS-DTYP states that if the authority is >= 2^32, then it should be in sid_to_key_str()
179 if (ctsid->authority[i] != cwsid->authority[i]) { in compare_sids()
180 if (ctsid->authority[i] > cwsid->authority[i]) in compare_sids()
[all …]
/openbmc/phosphor-certificate-manager/bmc-vmi-ca/
H A Dca_certs_manager.hpp4 #include "xyz/openbmc_project/Certs/Authority/server.hpp"
16 sdbusplus::xyz::openbmc_project::Certs::server::Authority,
24 * xyz.openbmc_project.Certs.ca.authority.Manager DBus API.
44 /** @brief This method provides signing authority functionality.
H A Dca_cert_entry.hpp5 #include "xyz/openbmc_project/PLDM/Provider/Certs/Authority/CSR/server.hpp"
18 sdbusplus::xyz::openbmc_project::PLDM::Provider::Certs::Authority::server::
27 * @brief CA authority certificate Entry implementation.
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/Authority/
H A Dmeson.build3 sdbusplus_current_path = 'xyz/openbmc_project/Certs/Authority'
8 '../../../../../yaml/xyz/openbmc_project/Certs/Authority.interface.yaml',
23 'xyz/openbmc_project/Certs/Authority',
/openbmc/linux/fs/smb/server/
H A Dsmbacl.h18 #define NUM_AUTHS (6) /* number of authority fields */
19 #define SID_MAX_SUB_AUTHORITIES (15) /* max number of sub authority fields */
104 * "S-" + 3 bytes for version field + 15 for authority field + NULL terminator
106 * For authority field, max is when all 6 values are non-zero and it must be
130 __u8 authority[NUM_AUTHS]; member
/openbmc/docs/designs/
H A Dcertificate-revocation-list.md15 been revoked by the issuing certificate authority (CA) before their actual or
27 authority.
48 authority/server/client certificates, that is, via file path or directory
83 it not only refreshes authority and server certificates, but also CRLs. Example
/openbmc/openbmc-test-automation/docs/
H A Dcertificate_generate.md5 A. Create your own SSL certificate authority
13 **Create your own SSL certificate authority**
15 1. Create private key for certificate authority(CA).
42 Common Name (eg, YOUR name) []:XYZ CERTIFICATE AUTHORITY
158 "CommonName": "XYZ CERTIFICATE AUTHORITY",
/openbmc/phosphor-certificate-manager/dist/busconfig/
H A Dphosphor-authority-cert-config.conf5 <allow own="xyz.openbmc_project.Certs.Manager.Authority.Truststore"/>
6 <allow send_destination="xyz.openbmc_project.Certs.Manager.Authority.Truststore"/>
H A Dbmc-vmi-ca.conf5 <allow own="xyz.openbmc_project.Certs.ca.authority.Manager"/>
6 <allow send_destination="xyz.openbmc_project.Certs.ca.authority.Manager"/>
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/
H A Dmeson.build2 subdir('Authority') subdir
40 input: [ '../../../../yaml/xyz/openbmc_project/Certs/Authority.interface.yaml', ],
41 output: [ 'Authority.md' ],
48 'xyz/openbmc_project/Certs/Authority',
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Certs/
H A DREADME.md6 key file with another (possibly certification Authority (CA) signed) certificate
23 - The URI /xyz/openbmc_project/certs/authority/truststore maps to instance of
24 the certificate application handling Certificate Authority certificates.
74 certitificate authority in order to apply for a digital identity certificate.
254 allowed. In case of authority certificate type the delete option is acceptable
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DOGL-UK-1.055 …as the authority to offer Information under the terms of this licence or the Controller of Her Maj…
64 The Controller of HMSO has authority to license Information subject to copyright and database right…

1234567891011