救火,救火救火,救火救火,救火救火,救火!谁用过asp里的request.clientcertificate("subjectcn")读出证书中的汉字信息是乱码

  • 主题发起人 主题发起人 cb_hfxy
  • 开始时间 开始时间
C

cb_hfxy

Unregistered / Unconfirmed
GUEST, unregistred user!
救火,救火救火,救火救火,救火救火,救火!谁用过asp里的request.clientcertificate("subjectcn")读出证书中的汉字信息是乱码怎样解决的。在线等待,很急急急急急急急急!!进来的的都有分。看到的兄弟帮忙顶一下,谢谢。。(300分)<br />救火,救火救火,救火救火,救火救火,救火!
谁用过asp里的request.clientcertificate("subjectcn")读出证书中的汉字信息
是乱码怎样解决的。我读出的汉字是乱码,怎样转换。
在线等待,很急急急急急急急急!!
进来的的都有分。看到的兄弟帮忙顶一下,
谢谢。。
解决的再给分。。急急急急急急急急急急急急急急急急急急急急急急急急急急急急急急急
 
这个问题,关注,
up,接点分;
 
哈,收点分,我就剩七分了,帮帮忙啦,呵呵,谢谢。
 
asp,你用一下ord()和chr()试试。
 
唉,都是骗分
 
试试看:
Request.ClientCertificate(Server.HTMLEncode("subjectcn"))
 
我是新手,不知道哦,也接点分~~~抖~~~
 
你的服务器是SQL SERVER英文版吗?我试过,有乱码的呀。
 
Platform SDK: Internet Information Services 6.0
Request.ClientCertificate Collection
The ClientCertificate collection holds fields of keys and values from a security certificate that the client browser passes to the Web server. These fields are specified in the X.509 version 3 standard for public key certificates. Because X.509 is not an official standard, you may notice differences among certificates obtained from certification authorities. For more information, see the X509 Certificate article on the World Wide Web Consortium Web site.
In order to populate the fields of the ClientCertificate collection, both the Web server and the client browser must support the SSL3.0/PCT1.0 protocol. The Web site must have secure sockets layer (SSL) enabled and request client certificates. After SSL is enabled, the URL of the Web site will start with "https://" instead of "http://". The client browser must be capable of sending a certificate. If no certificate is sent, the ClientCertificate collection returns EMPTY.
You must configure your Web server to request client certificates.
To read the values in each field of the ClientCertificate collection, pass in a key name and optional subfield name.
As a security precaution, always encode certificate data (or any request data) before using it. A general method of encoding data is to use Server.HTMLEncode. Another method is to write a short function that tests request data for invalid characters. More information can be found by reading chapter 12 of Writing Secure Code, and using Checklist: ASP Security when you create your ASP applications.
Syntax
Request.ClientCertificate( Key[SubField] )
Parameters
Key
Specifies the name of the certification field to retrieve. A client certificate consists of the following fields. Value Meaning
Certificate A string containing the binary stream of the entire certificate content in ASN.1 format. This is useful to discover if special SubFields are present that are not listed below.
Flags A set of flags that provides additional client certificate information. If Flags is set to 1, a client certificate is present. If Flags is set to 2, the last certificate in this chain is from an unknown issuer.
Issuer A string that contains a list of subfield values containing information about the issuer of the certificate. If this value is specified without a SubField, the ClientCertificate collection returns a comma-separated list of subfields. For example, C=US, O=Verisign, and so on.
SerialNumber A string that contains the certification serial number as an ASCII representation of hexadecimal bytes separated by hyphens (-). For example, 04-67-F3-02.
Subject A string that contains a list of subfield values. The subfield values contain information about the subject of the certificate. If this value is specified without a SubField, the ClientCertificate collection returns a comma-separated list of subfields. For example, C=US, O=Msft, and so on.
ValidFrom A date specifying when the certificate becomes valid. This date follows VBScript format and varies with international settings. For example, in the United States, 9/26/96 11:59:59 P.M.. The year value is displayed as a four-digit number.
ValidUntil A date specifying when the certificate expires. The year value is displayed as a four-digit number.

SubField
An optional parameter you can use to a retrieve an individual field in either the Subject or Issuer keys. This parameter is added to the Key parameter as a suffix. For example, IssuerO or SubjectCN. The following table lists some common SubField values. Value Meaning
C Specifies the name of the country/region of origin.
CN Specifies the common name of the user. (This subfield is only used with the Subject key.)
GN Specifies a given name.
I Specifies a set of initials.
L Specifies a locality.
O Specifies the company or organization name.
OU Specifies the name of the organizational unit.
S Specifies a state or province.
T Specifies the title of the person or organization.
SubField values other than those listed in the preceding table can be identified by their ASN.1 object identifier (OID). The format of the Object Identifier is a list of numbers separated by a period (.). A list of Object Identifiers for your certificate can be obtained from the authority that issued your certificate.
Example
You can iterate through the keys of the ClientCertificate collection, as shown in the following example.
<%
For Each strKey in Request.ClientCertificate
Response.Write strkey &amp;
" = " &amp;
Request.ClientCertificate(strkey) &amp;
"<BR>"
Next
%>
The following example retrieves the common name of the company that issued the client certificate.
<%= Request.ClientCertificate("IssuerCN") %>
The following example displays the expiration date of the client certificate.
This certification will expire on
<%= Request.ClientCertificate("ValidUntil") %>
The following example uses the Flags key to test whether the issuer of the certificate is known.
<%
Const ceCertPresent = 1
Const ceUnrecognizedIssuer = 2
If Request.ClientCertificate("Flags") = ceUnrecognizedIssuer then
Response.Write "Unrecognized issuer"
End If
%>
The following example displays all the fields of a client certificate.
Issuer: <%=Request.ClientCertificate("Issuer")%><br>
Subject: <%=Request.ClientCertificate("Subject")%><br>
<% cer=Request.ClientCertificate("Certificate") %>
Certificate Raw Data: <%=cer%><br>
Certificate length: <%=len(cer)%><br>
Certificate Hex Data:
<% For x=1 To 100 %>
<%=hex(asc(mid(cer,x,1)))%>nbsp;
<% Next %>
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
D
回复
0
查看
1K
DelphiTeacher的专栏
D
I
回复
0
查看
935
import
I
后退
顶部