/kernel/linux/linux-5.10/scripts/ |
H A D | sign-file.c | 59 #include <openssl/pkcs7.h> 234 PKCS7 *pkcs7 = NULL; in main() local 329 pkcs7 = PKCS7_sign(x509, private_key, NULL, bm, in main() 332 ERR(!pkcs7, "PKCS7_sign"); in main() 347 ERR(i2d_PKCS7_bio(b, pkcs7) != 1, in main() 379 ERR(i2d_PKCS7_bio(bd, pkcs7) != 1, "%s", dest_name); in main()
|
/kernel/linux/linux-6.6/scripts/ |
H A D | sign-file.c | 59 #include <openssl/pkcs7.h> 234 PKCS7 *pkcs7 = NULL; in main() local 329 pkcs7 = PKCS7_sign(x509, private_key, NULL, bm, in main() 332 ERR(!pkcs7, "PKCS7_sign"); in main() 347 ERR(i2d_PKCS7_bio(b, pkcs7) != 1, in main() 379 ERR(i2d_PKCS7_bio(bd, pkcs7) != 1, "%s", dest_name); in main()
|
/kernel/linux/linux-5.10/crypto/asymmetric_keys/ |
H A D | verify_pefile.c | 126 const u8 *pkcs7; in pefile_strip_sig_wrapper() local 172 pkcs7 = pebuf + ctx->sig_offset; in pefile_strip_sig_wrapper() 173 if (pkcs7[0] != (ASN1_CONS_BIT | ASN1_SEQ)) in pefile_strip_sig_wrapper() 176 switch (pkcs7[1]) { in pefile_strip_sig_wrapper() 178 len = pkcs7[1] + 2; in pefile_strip_sig_wrapper() 183 len = pkcs7[2] + 3; in pefile_strip_sig_wrapper() 186 len = ((pkcs7[2] << 8) | pkcs7[3]) + 4; in pefile_strip_sig_wrapper()
|
H A D | verify_pefile.h | 8 #include <crypto/pkcs7.h>
|
H A D | pkcs7_parser.h | 9 #include <crypto/pkcs7.h>
|
H A D | mscode_parser.c | 13 #include <crypto/pkcs7.h>
|
/kernel/linux/linux-6.6/crypto/asymmetric_keys/ |
H A D | verify_pefile.c | 126 const u8 *pkcs7; in pefile_strip_sig_wrapper() local 172 pkcs7 = pebuf + ctx->sig_offset; in pefile_strip_sig_wrapper() 173 if (pkcs7[0] != (ASN1_CONS_BIT | ASN1_SEQ)) in pefile_strip_sig_wrapper() 176 switch (pkcs7[1]) { in pefile_strip_sig_wrapper() 178 len = pkcs7[1] + 2; in pefile_strip_sig_wrapper() 183 len = pkcs7[2] + 3; in pefile_strip_sig_wrapper() 186 len = ((pkcs7[2] << 8) | pkcs7[3]) + 4; in pefile_strip_sig_wrapper()
|
H A D | verify_pefile.h | 8 #include <crypto/pkcs7.h>
|
H A D | pkcs7_parser.h | 9 #include <crypto/pkcs7.h>
|
H A D | mscode_parser.c | 13 #include <crypto/pkcs7.h>
|
/third_party/mbedtls/tests/data_files/ |
H A D | Makefile | 1860 pkcs7_test_cert_1 = pkcs7-rsa-sha256-1.crt 1861 pkcs7_test_cert_2 = pkcs7-rsa-sha256-2.crt 1862 pkcs7_test_cert_3 = pkcs7-rsa-sha256-3.crt 1878 pkcs7-rsa-sha256-1.crt: 1879 $(OPENSSL) req -x509 -subj="/C=NL/O=PKCS7/CN=PKCS7 Cert 1" -sha256 -nodes -days 3653 -newkey rsa:2048 -keyout pkcs7-rsa-sha256-1.key -out pkcs7-rsa-sha256-1.crt 1880 cat pkcs7-rsa-sha256-1.crt pkcs7-rsa-sha256-1.key > pkcs7-rsa-sha256-1.pem 1881 all_final += pkcs7 [all...] |
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | mod.rs | 20 pub use self::pkcs7::*; 56 mod pkcs7; modules
|
/kernel/linux/linux-5.10/certs/ |
H A D | blacklist.c | 181 * @pkcs7: The PKCS#7 message to check 183 int is_key_on_revocation_list(struct pkcs7_message *pkcs7) in is_key_on_revocation_list() argument 187 ret = pkcs7_validate_trust(pkcs7, blacklist_keyring); in is_key_on_revocation_list()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/ |
H A D | lib.rs | 58 pub use self::pkcs7::*; 88 mod pkcs7; modules
|
/third_party/node/deps/openssl/openssl/crypto/pkcs7/ |
H A D | bio_pk7.c | 11 #include <openssl/pkcs7.h>
|
/third_party/openssl/crypto/pkcs7/ |
H A D | bio_pk7.c | 11 #include <openssl/pkcs7.h>
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A D | asn1_item_list.c | 20 #include <openssl/pkcs7.h>
|
/third_party/openssl/crypto/asn1/ |
H A D | asn1_item_list.c | 20 #include <openssl/pkcs7.h>
|
/kernel/linux/linux-6.6/certs/ |
H A D | blacklist.c | 286 * @pkcs7: The PKCS#7 message to check 288 int is_key_on_revocation_list(struct pkcs7_message *pkcs7) in is_key_on_revocation_list() argument 292 ret = pkcs7_validate_trust(pkcs7, blacklist_keyring); in is_key_on_revocation_list()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | verification.h | 46 struct pkcs7_message *pkcs7,
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | verification.h | 57 struct pkcs7_message *pkcs7,
|
/third_party/openssl/demos/smime/ |
H A D | smenc.c | 12 #include <openssl/pkcs7.h>
|
H A D | smsign.c | 12 #include <openssl/pkcs7.h>
|
H A D | smdec.c | 12 #include <openssl/pkcs7.h>
|
H A D | smver.c | 12 #include <openssl/pkcs7.h>
|