Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3222260
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:58:14+00:00 2026-05-17T15:58:14+00:00

We have a C# web app where users will connect using a digital certificate

  • 0

We have a C# web app where users will connect using a digital certificate stored in their browsers.

From the examples that we have seen, verifying their identity will be easy once we enable SSL, as we can access the fields in the certificate, using Request.ClientCertificate, to check the user’s name.

We have also been requested, however, to sign the data sent by the user (a few simple fields and a binary file) so that we can prove, without doubt, which user entered each record in our database.

Our first thought was creating a small text signature including the fields (and, if possible, the md5 of the file) and encrypt it with the private key of the certificate, but…

As far as I know we can’t access the private key of the certificate to sign the data, and I don’t know if there is any way to sign the fields in the browser, or we have no other option than using a Java applet. And if it’s the latter, how we would do it (Is there any open source applet we can use? Would it be better if we create one ourselves?)

Of course, it would be better if there was any way to “sign” the fields received in the server, using the data that we can access from the user’s certificate. But if not, any info on the best way to solve the problem would be appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T15:58:15+00:00Added an answer on May 17, 2026 at 3:58 pm

    I suggest you to use java-applet. This approach is unified for all browsers. We use it in our projects. To sign the user-data you will need to use JCA API (http://download.oracle.com/javase/1.4.2/docs/guide/security/CryptoSpec.html#Signature). Also you will need to solve problem with accessing windows certificate store from java.

    You can solve it in this way:

    KeyStore keystore = KeyStore.getInstance("Windows-MY", "SunMSCAPI");
    
    keystore.load(null, null);
    
    HashMap<String,String> userPublicKeys = new HashMap<String,String>();
    
    Enumeration<String> aliasesEnum = keystore.aliases();
    
    if (!aliasesEnum.hasMoreElements())
        throw new Exception("No certificate!");
    
    // list through windows personal store
    while (aliasesEnum.hasMoreElements()) 
    {
       String alias = aliasesEnum.nextElement();
    
       boolean isKey = keystore.isKeyEntry(alias);
    
       if (isKey)
       {
           BASE64Encoder encoder = new BASE64Encoder();
           encoder.encode(keystore.getCertificate(alias).getEncoded());
    
           userPublicKeys.put(alias, encoder.encode(keystore.getCertificate(alias).getEncoded()));
           System.out.println("Entry alias: " + alias); 
       }
    
       // sign
       PrivateKey privateKey = (PrivateKey) keystore.getKey(alias,null);           
    
       Provider provider = keystore.getProvider();
       // data to signed
       byte[] data ="test data".getBytes();
       // Signing the data
       Signature sig = Signature.getInstance("SHA1withRSA", provider);
       sig.initSign(privateKey);
    
       sig.update(data);
       byte[] signature = sig.sign();
    
       System.out.println(ByteArrayToFromHexDigits.bytesToHexString(signature).toUpperCase());
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an existing web app that allows users to rate items based on
I have a web app that only registered users can use, therefore I should
Background I have a page on my ASP.NET MVC web app for users to
I have an asp.net update web app. Users go the the page, hit the
I have been support a web app that is used by a user base
I have a web app which connects to a server using a TCP connection
I have a web app for commercial property management that needs spreadsheet-like functionality for
I have a web-app-database 3 tier server setup. Web requests data from app, and
I'm attempting to create a web application with TweetSharp that will connect to Twitter
I have a Java web application that has a 'disconnected' Java Swing desktop app.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.