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.
signing a message submitted through a contact us form?
356 Views Asked by Max At
1
There are 1 best solutions below
Related Questions in SIGNING
- Migrate ClickOnce certificate from Sha1 to SHA256 and run on .NET 4.0 client machines
- is PdfPKCS7.loadCacertsKeyStore() deprecated
- signtool fail with Inno Setup with exit code 0x1
- How does driver signing work when Windows is offline?
- What part (or whole) of the keystore do I need from an external developer who developed our V1.0 Android app
- How do I call an AWS_IAM authorized API Gateway endpoint from AWS Lambda who's execution role has permission to do so?
- Xcode 8 signing errors, can't log in with account and no provisioning profile
- Compiling Android app in Eclipse - "keystore was tampered with, or password was incorrect"
- Signing and decoding with RSA-SHA in GO
- What purpose for using randomly generated KeyPair to do sha256WithRSA signing?
- xcode project on GitHub, remove signing and identity?
- Restricting FCM topic subscription based on APK signing
- Windows7 boot option to allow unsigned drivers ignored
- "*Certificate not found* (from client)" when calling Web Service that requires signing
- Customize PDFStamper using iTextSharp
Related Questions in SMIME
- Node.js equivalent to OpenSSL -sign operation
- Sign a file with SSL certificate for iOS "Shared Web Credentials" API
- How to determine hash and encryption algorithm of S/MIME message with Win32 CryptoAPI?
- JRuby error loading private key with jruby-openssl in bouncycastle
- Java - Using JavaMail to send and receive S/MIME messages
- How to encrypt all mails in a maildir / IMAP-Account with S/MIME or PGP?
- Difference between PGP and SMIME
- Extract certificate from a PKCS7 signature in php
- How to send S/MIME encrypted mails from iOS with attachment?
- Adding certificate in userSMIMECertificate attribute of inetOrgPerson
- Sending email with PKCS12 to IOS
- Can the S/MIME Content Type of e-mail be explicitly defined?
- Determine Type PGP/SMIME/PEM and operation SIGNATURE/ENCRYPTION of an input file Java
- openssl CMS decryption fails
- How to handle a p7s file in php
Related Questions in CONTACTUS
- Rails, Contact_us: Net::SMTPFatalError (550-Your FROM address
- signing a message submitted through a contact us form?
- Issue in sending email from contact us form
- Contact Us Form ASP.net MVC
- ASP.net Contact Form Sending an email error
- Changing contact_us default layout
- Functionality behind the contact us form which is built with site origin plugin in wordpress
- Contact Us form does not work after hosting Google App to custom domain
- How to exclude google adsense from contact us page?
- Can someone suggest me a wordpress contact us form plugin that pops up?
- How to format the content received in an email in Laravel 5.4?
- How to pull HTML form details in controller in Laravel 5.4?
- How to manage .env file in order to receive email in contact form in laravel?
- Creating a simple contact form in Laravel 5.4
- Contact us gem rails
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This is very complicated task which would involve client-side module (ActiveX or Java applet). The reason is that no JavaScript solution is reliable for the reasons described here.
In brief - the module would take JavaScript data to be signed, show this data to the customer and ask him to choose the certificate to be used for signing. Then the data would be signed and signed content would be submitted to the server by the module (not by the browser).
We implemented such scheme in our SecureBlackbox library which you can check if you need to implement such distributed signing. See description of distributed cryptography module here.