Tagged Questions

PKCS#7: Cryptographic Message Syntax Standard

learn more… | top users | synonyms

8
votes
1answer
991 views

How to verify an X509Certificate2 against an X509Certificate2Collection chain

I'm writing a SAML 2.0 response parser to handle POST authentication in ASP.Net (in C# and MVC, but that's less relevant). So I have a .p7b file to validate with and that can be read into a ...
5
votes
1answer
258 views

PKCS#7 SignedData and multiple digest algorithms

I'm investigating upgrading an application from SHA1 as the default PKCS#7 SignedData digest algorithm to stronger digests such as SHA256, in ways that preserve backwards compatibility for signature ...
4
votes
2answers
2k views

Verifying PKCS#7 certificates in Java

Need some help with crypto routines in Java. Given a PKCS#7 signature, I want to verify all certificates it contains against a trusted store. I assume that all certificates contained in signature are ...
4
votes
1answer
6k views

How to read Pkcs#7 certificate chain from file/stream in C#?

I have two certificates that I saved to disk. One is a certificate with private key that I exported as a .pfx file, the other one is a certificate that I saved including its certificate chain as a ...
3
votes
1answer
679 views

How do I create an encrypted PayPal button dynamically in Google App Engine?

So far I have found an example for Django that uses M2Crypto, but because M2Crypto is based on a C library, it cannot be run on GAE. Does anyone have a working code for creating an encrypted PayPal ...
2
votes
0answers
126 views

How to Use RSAEncryption to create PKCS7/CMS with SHA1 digest?

I create a pkcs7 block,and can verify myself, but the result is not the same with my partner who use OpenSSL.The p7 block I create cannot verify by my partner. we check the code carefully, just ...
2
votes
2answers
75 views

How does PKCS7 not lose data?

I'm developing a USB bootloader for an embedded system and one of my requirements is that data transmission over USB should be secure(bear with me, I'm new to encryption). I've decided to encrypt the ...
2
votes
1answer
531 views

How to add/remove PKCS7 padding from an AES encrypted string?

I'm trying to encrypt/decrypt a string using 128 bit AES encryption (ECB). What I want to know is how I can add/remove the PKCS7 padding to it. It seems that the Mcrypt extension can take care of the ...
2
votes
1answer
410 views

Parse PKCS #7 SSL Certificate Chain (.p7b) without private key?

I have a PKCS #7, signed, .p7b file which contains an X509 SSL certificate and the intermediate and root CA certs it was signed with. I need to use C# to parse the .p7b file, pull out the SSL ...
2
votes
1answer
550 views

How to parse a SAML assertion request in .Net

I'm trying to implement a SAML SSO solution in .Net, but I'm having a problem parsing the assertion. I have a sample assertion (looks like byte[] data as text) and corresponding .p7b file. I want to ...
2
votes
3answers
426 views

how to do cryptography (digital signature)in linux

I have done PKCS_7_ASN_ENCODING | X509_ASN_ENCODING in windows using wincrypt and I have to verify signature in linux. Can anyone tell by about good light crypto api on linux. On searching I ...
2
votes
3answers
2k views

AES with padding pkcs7 c++ code

I need an example of string encription (in c++ -> I'm working on linux-Ubuntu) with aes-cbc256 and a padding: PKCS7 Please help. For the following code how can I set the iv to 0 and set the key ...
2
votes
1answer
82 views

What version of the PKCS#1 spec is gcrypt implemented against?

I am trying to determine which version of the PKCS#1 spec that gcrypt is implemented against. Thank you
2
votes
1answer
655 views

Add Signing Time to PKCS7 Signed CMS?

I'm trying to add the signing time attribute to a file that I am signing using SignedCMS. private byte[] signFile(byte[] fileContent, X509Certificate2 verificationCert) { ContentInfo contentInfo = ...
2
votes
4answers
1k views

C# Create MIME Message?

Is there any built in functionality to MIME a file in C# .Net? What I am looking to do is: Convert a file into a MIME message Sign the MIME Message to a pcks 7 blob MIME that pkcs 7 blob Finally ...
2
votes
1answer
1k views

Is there any OpenSSL function to convert PKCS7 file to PEM

Is there any openssl api function to convert PKCS7 file to PEM. I am able to convert a PKCS12 file to PEM using PKCS12_parse() function which returns key and certificate given the password. There is ...
2
votes
3answers
727 views

What is the algorithm identifier when using AES in CBC mode with ISO 10126 padding inside of PKCS#7?

I want to use PKCS#7 as a container format for some encrypted, signed content and we need to use AES in CBC mode with ISO 10126 based padding. I can't seem to find a concrete reference to an algorithm ...
1
vote
1answer
179 views

Create PKCS#7 detached signature

I've been googling how to do this (in Java) with very little success. Creating the Signature object is pretty straightforward and so is getting the certificate chain, but how do I create a detached ...
1
vote
1answer
180 views

How to generate PKCS7 format signature using IOS iphone SDK?

I could Generate PKCS1 formatted raw signature.. and was able to verify it even. But could not find the resource to generate PCKS7 Formatted Signature using IPHONE IOS SDK. I need to sign a simple ...
1
vote
2answers
348 views

How to create an pkcs7 block for key exchange only (bouncy castle)

I am trying to create a file containing a pkcs 7 block. In this container, I need my public key and my signer info (no signed data!!!). I have already tried several alternatives without any luck. This ...
1
vote
3answers
265 views

Failed in reading PKCS7 signed file with s/mime format ( big size )

I want to verify signed file with s/mime format and the pkcs7 file size is 500MB. openssl smime -verify -in test.pk7 -inform DER Error reading S/MIME message 715956256:error:07069041:memory buffer ...
1
vote
1answer
159 views

Is there any reason to use CAdES over XAdES for advanced electronic signatures?

I haven't been able to find any reason of why should anyone prefer to implement a CAdES oriented electronic signature software solution over a XAdES oriented one. There are a lot more open libraries ...
1
vote
1answer
431 views

how to Read the certificates file from the PKCS7.p7b certificate file usind openssl?

hi i am getting PKCS7 file p7b .i want to read the content of the file and extract certificate in X509 structure. how can i access individual Certificate from the PKCS container using openssl library ...
1
vote
0answers
431 views

Problems reading authenticating a SAML assertion in .Net using WSSecurityTokenSerializer

I have a SAML assertion that I wish to authenticate in .Net using WSSecurityTokenSerializer. I've got the key-chain and SAML XML, despite a few issues. First I get the SAML assertion from the HTTPS ...
1
vote
1answer
181 views

Extract pkcs7 (byte[]) from a pdf file using IText or ITextSharp or BouncyCastle

How can I extract, from a pdf signed file, the PKCS7 package encoded, using either IText or BouncyCastle, so i can either store or validate in another framework? In fact, how can I get, at all, a ...
1
vote
0answers
114 views

“Inject” the signer's certificate into the PKCS#7-without-signer-certificate

According to what I have read, it seems that CAPICOM does not support the verification of PKCS#7 that do not contain the signer's certificate, while, on the other hand, PKCS#7 can come without the ...
1
vote
1answer
209 views

Update original data in detached signature created by crypto.signText

I got the BASE64 encoded text by using crypto.signText method. but that dose not contain original to data which is signed. can anyone tell me how to update that encoded text to attach data to it.
1
vote
2answers
694 views

Signing data with PKCS #7 (opaque) for the web

Abstract: Is there a way, either via Firefox plugin or other means to emulate javascript crypto.signText using an opaque algorithm instead of detached (what it currently does?) to sign arbitrary data. ...
1
vote
1answer
667 views

PKCS#7 Signed Code Image extracting

I wanted to extract the Signer Informations from PKCS#7 Signed Code Image using C/CPP. I wanted to know the openssl API's. I am Able to extract Using bouncy castle (CMSSignedData). Please let me know ...
1
vote
1answer
2k views

How to encode a value in PKCS7 with Java?

I would like to use PKCS7 encryption to encode a value together with Java and Java Servlet. Is there any available library and references to do the encryption? Any sample or tutorial that I could ...
1
vote
1answer
723 views

Alternatives to Bouncy Castle java library for PKCS7 encryption/signing?

We've always used the BouncyCastle library, I'm being asked if there are other viable alternatives, either open source or not. Or is the BouncyCastle library already the best one to use?
1
vote
1answer
949 views

digital signature - detached Pkcs#7 to XML-DSIG

I am struggling with the following scenario: an XML-message is created client-side and digitally signed using mozilla's window.crypto.signText. After signing, the message and the signature are ...
0
votes
0answers
17 views

In Ruby/Rails, how to decrypt a string encrypted and signed by PKCS7

In this RailsCast on PayPal it shows you how to encrypt a URL parameter before sending it to PayPal. PAYPAL_CERT_PEM = File.read("#{Rails.root}/certs/paypal_cert.pem") APP_CERT_PEM = ...
0
votes
0answers
25 views

How to print a BIO object in opensl or print time from ASN1_TYPE object

How do I print the value stored in BIO object "time". Basically I need to extract signed time. ASN1_TYPE *asn1obj; if (!(asn1obj = PKCS7_get_signed_attribute(si, NID_pkcs9_signingTime))) { ...
0
votes
1answer
122 views

decrypt p7m file in C# or .NET with privateKey from file

Hopefully someone can help me with code because I am working on it 3 months without any success. I tried almost anything from internet but nothing does not work. Problem: I have encrypted file p7m ...
0
votes
0answers
45 views

Can I convert a Rawsignature to PKCS#7 in xcode using Openssl

I could susscessfuly genearte pkcs7 signature using PEM(private key)file in Openssl. But, how do I convert a RAWsignature generated using security.framework to pkcs7 using Openssl. Edit: load data > ...
0
votes
1answer
256 views

AES Encryption for an NSString?

I am implementing for iOS some decryption code for a message originating on a server over which I have no control. So the decryption requirements are: Cipher Method : AES256 Cipher Mode: ECB Padding: ...
0
votes
1answer
191 views

C# Verify Digital Signature with SignedCms

I get the CryptographicException "The hash value is not correct." I tried verifyCms.CheckSignature(true); (same error) I tried to add in ContentInfo the whole mail (Sender , Subject , Body, HTML ...
0
votes
0answers
137 views

conversion from opaque pkcs7 p7m to detached smime

Hi I couldn't find a way to convert an opaque pkcs#7(p7m) in a clear text deatached smime so that the signed content could be processed by regular mime libraries. I'd like to take p7m file and ...
0
votes
0answers
69 views

Apple Live Streaming, encryption and padding to PKCS7

Ive written a segmenter and have just added aes encryption, but im a little puzzled by the PKCS7 padding, when playing on the iPad i get glitches every 12 seconds, which is my segment length. If my ...
0
votes
0answers
222 views

How to decrypt on Unix data encrypted on Windows with a certificate?

I have data encrypted on Windows with a PFX certificate, using C# EnvelopedCms. I need to decrypt the data on Unix, e.g. using openssl or Python M2Crypto.X509. First I convert the cert from PFX to ...
0
votes
1answer
328 views

Warning: openssl_pkcs7_sign() [function.openssl-pkcs7-sign]: error getting private key in C:\xampp\htdocs\this\tcpdf\tcpdf.php on line 8366

Helo everyone, I am using TCPDF to sign PDF, but when running the example_052 I got this error: Warning: openssl_pkcs7_sign() [function.openssl-pkcs7-sign]: error getting private key in ...
0
votes
0answers
347 views

Get Started with digital sign with Cades Attributes [closed]

I need to sign a file to obtain .p7m with Sha256 and CADES attribute, with certificate that is on Smart Card The sign must be sha256WithRSAEncryption (OID.1.2.840.113549.1.1.11) with padding ...
0
votes
1answer
76 views

Certificate question (pkcs7)

Accoring to the PKCS#7 standard certificate has some definite attributes. But I didn't find any information about the following: What is OID? What is RDN? What is the format of Public Key?
0
votes
1answer
256 views

Signing and creating a asn1 signedmessage - Bouncycastle

Is there any good tutorials on how to sign a file, and wrap it inside a asn1 pkcs7 package using bouncycastle?
0
votes
0answers
267 views

Verification failure of p7s signature due to authenticated attributes - C#

I need help with a problem I'm having with verifying a p7s signature of part of an xml document. I'm signing this xml using RSA-SHA1 algorithm in detached mode, and I'm required to include the signing ...
0
votes
3answers
926 views

Problems with pkcs7 file validation

I have got a big and strange problem with PKCS7 securities files. I create a p7s file like is suggested in http://www.thatsjava.com/java-tech/85019/ where it create the file and validate it only uses ...
0
votes
1answer
564 views

Creating and Verifying PKCS #7 signatures in VB.net

Im trying to figure out how to generate and verify PKCS #7 signatures in VB.net. These signatures need to be stored in a separate file to the data they are verifying (eg test.dat and test.dat.sig). ...
0
votes
2answers
592 views

PEM Conversion (PKCS7) to DER - AKA Base64 C++ Problems

I've just finished up writing some OpenSSL/PKCS7 digital signature code and now have a working PEM encoded PKCS7 file. So after little battle, I need to convert that PEM to DER format. This is proving ...
0
votes
1answer
416 views

How to extract pkcs7 envelop contents and verify digital signature?

I want to verify the digital signature of the pkcs7 envelop . PKCS7 envelop has message content,signer certificate, signature in it. How to extract this parts ? And how to verify digital signature ? ...

1 2