我尝试申请 SSL 证书,但它不起作用...
当我这样做时:
void main() {
SecureSocket.initialize(
database: './bin/security',
password: 'dartdart'
);
HttpServer.bindSecure('127.0.0.1', 8443, certificateName: 'Dart').then
((server) => server.listen((req) {
req.response.write('hello');
req.response.close();
}));
}
没关系,我收到有关证书的警告消息,我仍然继续,然后我收到“你好”。
当我在 bindSecure 中添加 requestClientCertificate 标志时,浏览器要求我从列表中选择一个证书,我选择了一个,我进入浏览器 无法与服务器建立安全连接。这可能是服务器的问题,或者它可能需要您没有的客户端身份验证证书。
错误代码:ERR_SSL_PROTOCOL_ERROR
但服务器端没有错误。
我错过了什么?
我在 mac os marverick 上。
尝试将证书安装到 Chrome 中,因为您说它是自签名的。
chrome://settings
Show advanced settings...
HTTPS/SSL -> Manage certificates...
Import... (follow the wizard)
我是一名优秀的程序员,十分优秀!