Sign data using smart card's private key with ASP.NET, Windows Authentication, and Impersonation

后端 未结 3 1644
既然无缘
既然无缘 2021-01-07 03:36

I want to know if it is possible to sign data using a smart card\'s private key without resorting to a java applet or activex control.

I am tant

3条回答
  •  忘掉有多难
    2021-01-07 03:55

    You could try this first:

    store.Open(OpenFlags.ReadOnly);
    cert = store.Certificates[0];
    store.Close();
    

提交回复
热议问题