我对Erlang相对较新,并希望编写一个使用客户端证书来识别客户端的小型服务器。客户端应该能够使用任何公钥/私钥对而不是证书链的一部分。我查看了OTP源代码中的SSL示例,并使用make_certs.erl创建密钥对。我可以使用创建的客户端证书进行连接,但不能使用自签名证书。
如何在不验证客户端证书的情况下获取客户端证书?
我的示例代码目前是:
Sub returnDates()
Dim QuotationStartD As Date, QuotationStartD As Date
QuotationStartD = Cells(5, 3)
QuotationEndD = Cells(6, 3)
For Row = 1 To (QuotationEndD - QuotationStartD)
MsgBox QuotationStartD + Row - 1 ' put your sheet and cells
Next Row
End Sub