| /kernel/linux/linux-6.6/tools/certs/ |
| D | print-cert-tbs-hash.sh | 15 # ./print-cert-tbs-hash.sh certificate-to-invalidate.pem > hash0.txt 16 # openssl smime -sign -in hash0.txt -inkey builtin-private-key.pem \ 17 # -signer builtin-certificate.pem -certfile certificate-chain.pem \ 33 # Checks that it is indeed a certificate (PEM or DER encoded) and exclude the 34 # optional PEM text header. 35 if ! PEM="$(openssl x509 -inform DER -in "${CERT}" 2>/dev/null || openssl x509 -in "${CERT}")"; then 56 RANGE_AND_DIGEST=($(echo "${PEM}" | \ 87 echo "${PEM}" | \
|
| /kernel/linux/linux-5.10/certs/ |
| D | Makefile | 55 ifeq ($(CONFIG_MODULE_SIG_KEY),"certs/signing_key.pem") 58 X509TEXT=$(shell openssl x509 -in "certs/signing_key.pem" -text 2>/dev/null) 65 $(if $(findstring id-ecPublicKey,$(X509TEXT)),,$(shell rm -f "certs/signing_key.pem")) 71 $(if $(findstring rsaEncryption,$(X509TEXT)),,$(shell rm -f "certs/signing_key.pem")) 75 $(obj)/signing_key.pem: $(obj)/x509.genkey 86 -outform PEM -out $(obj)/signing_key.pem \ 87 -keyout $(obj)/signing_key.pem \
|
| D | Kconfig | 6 default "certs/signing_key.pem" 9 Provide the file name of a private key/certificate in PEM format, 14 If this option is unchanged from its default "certs/signing_key.pem", 39 Note: Remove all ECDSA signing keys, e.g. certs/signing_key.pem, 61 If set, this option should be the filename of a PEM-formatted file 125 If set, this option should be the filename of a PEM-formatted file
|
| /kernel/linux/linux-6.6/Documentation/hwmon/ |
| D | lineage-pem.rst | 1 Kernel driver lineage-pem 8 Prefix: 'lineage-pem' 38 Example: the following will load the driver for a Lineage PEM at address 0x40 41 $ modprobe lineage-pem 42 $ echo lineage-pem 0x40 > /sys/bus/i2c/devices/i2c-1/new_device
|
| D | index.rst | 100 lineage-pem
|
| /kernel/linux/linux-5.10/Documentation/hwmon/ |
| D | lineage-pem.rst | 1 Kernel driver lineage-pem 8 Prefix: 'lineage-pem' 38 Example: the following will load the driver for a Lineage PEM at address 0x40 41 $ modprobe lineage-pem 42 $ echo lineage-pem 0x40 > /sys/bus/i2c/devices/i2c-1/new_device
|
| D | index.rst | 85 lineage-pem
|
| /kernel/linux/linux-6.6/certs/ |
| D | Kconfig | 6 default "certs/signing_key.pem" 9 Provide the file name of a private key/certificate in PEM format, 14 If this option is unchanged from its default "certs/signing_key.pem", 37 Note: Remove all ECDSA signing keys, e.g. certs/signing_key.pem, 60 If set, this option should be the filename of a PEM-formatted file 127 If set, this option should be the filename of a PEM-formatted file
|
| D | Makefile | 43 ifeq ($(CONFIG_MODULE_SIG_KEY),certs/signing_key.pem) 50 -outform PEM -out $@ -keyout $@ $(keytype-y) 2>&1 52 $(obj)/signing_key.pem: $(obj)/x509.genkey FORCE 55 targets += signing_key.pem
|
| D | extract-cert.c | 1 /* Extract X.509 certificate in DER form from PKCS#11 or PEM. 22 #include <openssl/pem.h>
|
| /kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
| D | verify_sig_setup.sh | 43 -outform PEM -out ${tmp_dir}/signing_key.pem \ 44 -keyout ${tmp_dir}/signing_key.pem 2>&1 46 openssl x509 -in ${tmp_dir}/signing_key.pem -out \
|
| /kernel/linux/linux-5.10/Documentation/admin-guide/ |
| D | module-signing.rst | 100 ``certs/signing_key.pem`` will disable the autogeneration of signing keys 103 and its corresponding X.509 certificate in PEM form, or — on systems where 108 If the PEM file containing the private key is encrypted, or if the 116 This option can be set to the filename of a PEM-encoded file containing 139 certs/signing_key.pem 170 -config x509.genkey -outform PEM -out kernel_key.pem \ 171 -keyout kernel_key.pem 173 The full pathname for the resulting kernel_key.pem file can then be specified 192 trusted certificates can be provided in a PEM-encoded file referenced by the
|
| /kernel/linux/linux-6.6/Documentation/admin-guide/ |
| D | module-signing.rst | 100 ``certs/signing_key.pem`` will disable the autogeneration of signing keys 103 and its corresponding X.509 certificate in PEM form, or — on systems where 108 If the PEM file containing the private key is encrypted, or if the 116 This option can be set to the filename of a PEM-encoded file containing 139 certs/signing_key.pem 170 -config x509.genkey -outform PEM -out kernel_key.pem \ 171 -keyout kernel_key.pem 173 The full pathname for the resulting kernel_key.pem file can then be specified 192 trusted certificates can be provided in a PEM-encoded file referenced by the
|
| /kernel/linux/linux-5.10/drivers/pci/controller/ |
| D | pci-thunder-pem.c | 140 * The first device on the bus is the PEM PCIe bridge. in thunder_pem_config_read() 288 * The first device on the bus is the PEM PCIe bridge. in thunder_pem_config_write() 313 * The MSI-X BAR for the PEM and AER interrupts is located at in thunder_pem_init() 314 * a fixed offset from the PEM register base. Generate a in thunder_pem_init() 342 regionid = kasprintf(GFP_KERNEL, "PEM RC:%d", seg); in thunder_pem_reserve_range() 388 * FW where we need to calculate PEM-specific resources manually. in thunder_pem_acpi_init() 393 * Reserve 64K size PEM specific resources. The full 16M range in thunder_pem_acpi_init() 431 * The second register range is the PEM bridge to the PCIe in thunder_pem_platform_init() 456 .compatible = "cavium,pci-host-thunder-pem",
|
| D | Makefile | 52 obj-$(CONFIG_ARM64) += pci-thunder-pem.o
|
| /kernel/linux/linux-6.6/drivers/pci/controller/ |
| D | pci-thunder-pem.c | 147 * The first device on the bus is the PEM PCIe bridge. in thunder_pem_config_read() 295 * The first device on the bus is the PEM PCIe bridge. in thunder_pem_config_write() 320 * The MSI-X BAR for the PEM and AER interrupts is located at in thunder_pem_init() 321 * a fixed offset from the PEM register base. Generate a in thunder_pem_init() 349 regionid = kasprintf(GFP_KERNEL, "PEM RC:%d", seg); in thunder_pem_reserve_range() 395 * FW where we need to calculate PEM-specific resources manually. in thunder_pem_acpi_init() 400 * Reserve 64K size PEM specific resources. The full 16M range in thunder_pem_acpi_init() 438 * The second register range is the PEM bridge to the PCIe in thunder_pem_platform_init() 463 .compatible = "cavium,pci-host-thunder-pem",
|
| D | Makefile | 16 obj-$(CONFIG_PCI_HOST_THUNDER_PEM) += pci-thunder-pem.o 61 obj-$(CONFIG_ARM64) += pci-thunder-pem.o
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/pci/ |
| D | host-generic-pci.yaml | 57 Cavium ThunderX PEM firmware-initialized PCIe host controller 58 const: cavium,pci-host-thunder-pem 135 - cavium,pci-host-thunder-pem
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/pci/ |
| D | host-generic-pci.yaml | 57 Cavium ThunderX PEM firmware-initialized PCIe host controller 58 const: cavium,pci-host-thunder-pem 132 - cavium,pci-host-thunder-pem
|
| /kernel/linux/linux-5.10/scripts/ |
| D | extract-cert.c | 1 /* Extract X.509 certificate in DER form from PKCS#11 or PEM. 22 #include <openssl/pem.h>
|
| /kernel/linux/linux-6.6/tools/testing/selftests/sgx/ |
| D | sign_key.S | 10 .incbin "sign_key.pem"
|
| /kernel/linux/linux-5.10/drivers/crypto/cavium/nitrox/ |
| D | nitrox_csr.h | 202 /* PEM registers */ 836 * @pem: Set when any PEM(0)_INT RO bit is set or when any non-RO 837 * PEM(0)_INT and corresponding PEM(0)_INT_ENA_W1C bit are both set 862 u64 pem : 1; member 876 u64 pem : 1;
|
| /kernel/linux/linux-6.6/drivers/crypto/cavium/nitrox/ |
| D | nitrox_csr.h | 202 /* PEM registers */ 836 * @pem: Set when any PEM(0)_INT RO bit is set or when any non-RO 837 * PEM(0)_INT and corresponding PEM(0)_INT_ENA_W1C bit are both set 862 u64 pem : 1; member 876 u64 pem : 1;
|
| /kernel/linux/linux-5.10/ |
| D | .gitignore | 136 signing_key.pem
|
| /kernel/linux/linux-6.6/ |
| D | .gitignore | 146 signing_key.pem
|