HomeSort by relevance Sort by last modified time
    Searched full:pkcs7 (Results 1 - 25 of 229) sorted by null

1 2 3 4 5 6 7 8 910

  /external/boringssl/src/crypto/err/
pkcs7.errordata 0 PKCS7,100,BAD_PKCS7_VERSION
2 PKCS7,101,NOT_PKCS7_SIGNED_DATA
3 PKCS7,102,NO_CERTIFICATES_INCLUDED
4 PKCS7,103,NO_CRLS_INCLUDED
CMakeLists.txt 24 pkcs7.errordata
  /external/boringssl/src/crypto/pkcs7/
CMakeLists.txt 4 pkcs7
8 pkcs7.c
  /device/linaro/bootloader/edk2/SecurityPkg/Pkcs7Verify/Pkcs7VerifyDxe/
Pkcs7VerifyDxe.uni 2 // Produces the UEFI PKCS7 Verification Protocol.
4 // PKCS7 is a general-purpose Cryptographic Message Syntax Standard (RFC2315,
5 // http://tools.ietf.org/html/rfc2315). This module will produce the UEFI PKCS7
22 #string STR_MODULE_ABSTRACT #language en-US "Produces UEFI PKCS7 Verification Protocol"
24 #string STR_MODULE_DESCRIPTION #language en-US "This module will produce UEFI PKCS7 Verification Protocol."
Pkcs7VerifyDxe.inf 2 # Produces the UEFI PKCS7 Verification protocol.
4 # PKCS7 is a general-purpose Cryptographic Message Syntax Standard (defined by
6 # UEFI PKCS7 Verification Protocol which is used to verify data signed using PKCS7
Pkcs7VerifyDxeExtra.uni 17 "UEFI PKCS7 Verification DXE"
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.0.0/
apksig-3.0.0-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.0.0-beta6/
apksig-3.0.0-beta6-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.0.0-beta7/
apksig-3.0.0-beta7-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.0.0-rc1/
apksig-3.0.0-rc1-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.2.0-alpha16/
apksig-3.2.0-alpha16-sources.jar 
  /device/linaro/bootloader/edk2/SecurityPkg/Library/FmpAuthenticationLibPkcs7/
FmpAuthenticationLibPkcs7.uni 2 // FMP Authentication PKCS7 handler.
4 // This library provide FMP Authentication PKCS7 handler to verify EFI_FIRMWARE_IMAGE_AUTHENTICATION.
23 #string STR_MODULE_ABSTRACT #language en-US "FMP Authentication PKCS7 handler."
25 #string STR_MODULE_DESCRIPTION #language en-US "This library provide FMP Authentication PKCS7 handler to verify EFI_FIRMWARE_IMAGE_AUTHENTICATION."
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.0.0-alpha6/
apksig-3.0.0-alpha6-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.0.0-alpha7/
apksig-3.0.0-alpha7-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.0.0-alpha9/
apksig-3.0.0-alpha9-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.0.0-beta1/
apksig-3.0.0-beta1-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.0.0-beta2/
apksig-3.0.0-beta2-sources.jar 
  /libcore/support/src/test/java/tests/resources/x509/
certs-pk7.pem 1 -----BEGIN PKCS7-----
51 -----END PKCS7-----
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptAuthenticode.c 27 #include <openssl/pkcs7.h>
74 PKCS7 *Pkcs7;
94 Pkcs7 = NULL;
101 Pkcs7 = d2i_PKCS7 (NULL, &Temp, (int)DataSize);
102 if (Pkcs7 == NULL) {
109 if (!PKCS7_type_is_signed (Pkcs7)) {
114 // NOTE: OpenSSL PKCS7 Decoder didn't work for Authenticode-format signed data due to
118 SpcIndirectDataOid = OBJ_get0_data(Pkcs7->d.sign->contents->type);
119 if (OBJ_length(Pkcs7->d.sign->contents->type) != sizeof(mSpcIndirectOidValue) ||
    [all...]
CryptPkcs7Verify.c 29 #include <openssl/pkcs7.h>
262 PKCS7 *Pkcs7;
288 Pkcs7 = NULL;
302 Pkcs7 = d2i_PKCS7 (NULL, (const unsigned char **) &Temp, (int) SignedDataSize);
303 if (Pkcs7 == NULL) {
310 if (!PKCS7_type_is_signed (Pkcs7)) {
314 Stack = PKCS7_get0_signers(Pkcs7, NULL, PKCS7_BINARY);
387 if (Pkcs7 != NULL) {
388 PKCS7_free (Pkcs7);
    [all...]
CryptPkcs7Sign.c 19 #include <openssl/pkcs7.h>
62 PKCS7 *Pkcs7;
78 Pkcs7 = NULL;
138 Pkcs7 = PKCS7_sign (
145 if (Pkcs7 == NULL) {
152 P7DataSize = i2d_PKCS7 (Pkcs7, NULL);
163 P7DataSize = i2d_PKCS7 (Pkcs7, (unsigned char **) &Tmp);
202 if (Pkcs7 != NULL) {
203 PKCS7_free (Pkcs7);
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
D_S_I_G_.py 22 # each followed immediately by the pkcs7 bytes
27 cbSignature: l # length of following raw pkcs7 data
57 sigrec.pkcs7 = newData[:sigrec.cbSignature]
66 sigrec.cbSignature = len(sigrec.pkcs7)
67 packed = sstruct.pack(DSIG_SignatureBlockFormat, sigrec) + sigrec.pkcs7
102 "-----BEGIN PKCS7-----": True, "-----END PKCS7-----": True, "": True
122 writer.write_noindent("-----BEGIN PKCS7-----\n")
123 writer.write_noindent(b64encode(self.pkcs7))
124 writer.write_noindent("-----END PKCS7-----\n"
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
PKCS7Padding.java 8 * A padder that adds PKCS7/PKCS5 padding to a block.
31 return "PKCS7";
  /external/wpa_supplicant_8/hs20/client/
est.c 13 #include <openssl/pkcs7.h>
30 static int pkcs7_to_cert(struct hs20_osu_client *ctx, const u8 *pkcs7,
36 PKCS7 *p7 = NULL;
37 const unsigned char *p = pkcs7;
47 CBS_init(&pkcs7_cbs, pkcs7, len);
124 unsigned char *pkcs7; local
160 pkcs7 = base64_decode((unsigned char *) resp, resp_len, &pkcs7_len);
161 if (pkcs7 && pkcs7_len < resp_len / 2) {
164 os_free(pkcs7);
165 pkcs7 = NULL
668 unsigned char *pkcs7; local
    [all...]
  /external/wpa_supplicant_8/hs20/server/www/
est.php 77 $fname = "$osu_root/est/$realm-cacerts.pkcs7";
84 header("Content-Type: application/pkcs7-mime");
171 $pkcs7 = "$cadir/tmp/est-client.pkcs7"; variable
172 if (file_exists($pkcs7))
173 unlink($pkcs7);
174 exec("openssl crl2pkcs7 -nocrl -certfile $cert_pem -out $pkcs7 -outform DER");
175 if (!file_exists($pkcs7)) {
186 header("Content-Type: application/pkcs7-mime");
188 $data = file_get_contents($pkcs7);
    [all...]

Completed in 2233 milliseconds

1 2 3 4 5 6 7 8 910