Tagged Questions
S/MIME (Secure/Multipurpose Internet Mail Extensions) is a standard for public key encryption and signing of MIME data.
6
votes
1answer
509 views
Extract public Certificate from SMIME Message (pkcs7-signature) with OpenSSL
How can i extract the public certificate from an smime message (pkcs7-signature) with OpenSSL?
4
votes
2answers
187 views
Why doesn't my key identifier match?
I'm attempting to decrypt an S/MIME email (sent originally via Outlook), and to do that, I'm using the bouncycastle API. I'm running into a snag, though.
I have, in the Windows certificate store, the ...
3
votes
1answer
486 views
Digitally sign email in ruby with S/MIME
Is there a ruby way to digitally sign email messages via S/MIME? Our group uses PKI and our users are conditioned to expect digital signatures for important messages.
I know I can invoke the openssl ...
2
votes
1answer
150 views
Creating S/MIME from MIME?
I don't completely understand and some documentation or help would be appreciated greatly :)
Using PHP I create a MIME by using ezcomponents Mail object. But what I do not understand is:
Do you ...
2
votes
2answers
904 views
S/MIME in Java without JCE
I'm trying to write an applet that would sign e-mail with S/MIME.
Obviously I want to make one small jar with only the required stuff.
Obviously the Java way of doing that involves having a huge ...
2
votes
2answers
6k views
Decode/extract smime.p7m file contents (email with embedded files) with OpenSSL?
We have an old process (VBScript) that reads a common mailbox and processes certain emails into a database.
New regulations have all messages with attachments now being digitally signed.
The process ...
1
vote
1answer
33 views
Raw RSA decryption/signing
I'm implementing RSACryptoToken, that is an interface for RSA cryptographic tokens, according to the documentation.
There are twp methods, called decryptRSA and signRSA - they should be implemented.
...
1
vote
1answer
28 views
Sending an e-mail with an attachment using S/MIME (PHP)
I'm trying to send an encrypted email with an attachment from PHP, however, my e-mail is just diplayed as plain text in the email-client (in this case MS Outlook).
This is the code I use to send the ...
1
vote
2answers
204 views
encrypting an email using an EC X509 certificate
I'm trying to use BouncyCastle's SMIME package to create an encrypted message using ECDSA X509 certificates. According to BouncyCastle's release notes, this has been supported since 1.32 (I'm using ...
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
101 views
pkcs7-signature message
When creating a s/mime message where you in the second part (the first part is the actual message) are supposed to provide BOTH the certificate you signed the message with, AND the result of the ...
1
vote
2answers
255 views
wrong behaviour of m2crypto compared to openssl
I have to consolidate and possibly rewrite a bunch of bash scripts that verify that incoming smime messages are valid (i.e. encrypted with company's private key and signed a certain set of public ...
1
vote
1answer
170 views
Multiple signatures in S/MIME
Is it possible to sign a MIME email (RFC 2822) multiple times using S/MIME, so that all signatures are verifiable and retrievable?
1
vote
2answers
562 views
S/Mime Encrypting a string
I have been tasked with encrypting a string using S/Mime encryption. Eons ago, the firm I work for bought a component for this (from IPWorks) but we have had untold bundles of grief getting their ...
0
votes
0answers
4 views
Using OpenSSL's CMS_encrypt() in Objective-c
I would like to use OpenSSL's cms library to encrypt a file with a certain certificate using the CMS_encrypt() method. (I guess this should be the right one)
Does anyone has a small sample about using ...
0
votes
1answer
13 views
Can I determine whether MFMailComposeViewController will use S/MIME or not?
I would like to use standard MFMailComposeViewController but I need to tell user, whether message that was sent was sent with S/MIME (in fact I need to disable email creation if S/MIME is disabled). I ...
0
votes
0answers
70 views
PHP openssl command error
Does anyone notice anything wrong with this command? I am no expert in openssl and was hoping someone could help me out with this. Thank you!
(/usr/bin/openssl smime -sign -signer ...
0
votes
1answer
21 views
signing a message submitted through a contact us form?
SO people can sign a message using Thunderbird, how about allowing a person to sign a message
through a contact us form? how would one go about making that a realization.
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
1answer
523 views
How to Decode/extract smime.p7m file contents of SMIME signed email using Ruby OpenSSL library
I have a signed email message as string. And I want to get string with whole unsigned message with attachments and body that I can parse with, for example, Mail gem.
I found question: Decode/extract ...
0
votes
0answers
71 views
S/MIME without the key exchange part
I'd like to use a centralised authority (like with SSL) to allow users with a digital id to send e-mail to people without a digital ID/cert.
Is this possible, or is web-of-trust style key exchange ...
0
votes
1answer
494 views
Difference between PGP and SMIME
I am wondering why is there a need for two secure email standards. If I am not completely wrong, nowadays PGP and SMIME essentially provide more or less the same functionality.
In the past, the ...
0
votes
0answers
167 views
Save encrypted S/MIME message in decrypted form
I have some emails in .MSG format encrypted with S/MIME. I can
read them in Outlook which decrypts the message upon opening.
Yes, I do have the correct certificates installed.
The question is: how ...
0
votes
1answer
304 views
OpenSSL treats smime message with Content-type 'Application/EDI' as text and changes line breaks
I receive smime message with content-type 'Application/EDI'. It is non-standard mime type and content should be interpreted as binary. But OpenSSL during verifying signature treats it as text and ...
0
votes
1answer
1k views
OpenSSL smime verify failed with right certificate and signature
I receive encrypted and signed smime message.
Decrypting is ok, data seems to be correct.
openssl.exe smime -decrypt -in %1 -out %1_signed.txt -inkey myPrivate.pem
But on verifying signature stage ...
0
votes
2answers
260 views
Email Security: TLS and S/MIME
My understanding is that TLS is an encryption technique that allowing two STMP servers to communicate with each other securely. If HTTPS is used to connect to an STMP serve is that the same as using ...
0
votes
1answer
218 views
s/mime v3 with M2Crypto
I would like to send a mail with a s/mime v3 attachment through SMTP.
The excellent HOWTO below describes the procedure in detail for s/mime v2.
http://sandbox.rulemaker.net/ngps/m2/howto.smime.html
...
0
votes
2answers
116 views
Secure messaging using Secure MIME is it reliable?
We have an automatic reporting and notification system written in .net that sends emails with plain text. We are having to encrypt the messages that we send our clients.
The possible implementation ...
0
votes
1answer
221 views
Toggling digital signing in Outlook.MailItem
In Outlook 2007, I have written an Application_ItemSend handler which needs to turn off digital signing for selected messages, even though signing is normally on by default for all messages.
How can ...
0
votes
2answers
285 views
Which is the best managed .NET e-mail component with support for S/MIME?
I need a replacement for System.Net.Mail.MailMessage that is able to send signed and/or encrypted e-mails.
Is there an open source library covering that?
Or do you have some experiences with some ...