mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-05-11 15:58:27 +00:00
21 lines
424 B
JavaScript
21 lines
424 B
JavaScript
|
var certMgr = require("./lib/certMgr");
|
||
|
|
||
|
certMgr.clearCerts(function(){
|
||
|
console.log(arguments);
|
||
|
});
|
||
|
|
||
|
certMgr.getCertificate("www.test3.com",function(){
|
||
|
console.log(arguments);
|
||
|
});
|
||
|
|
||
|
certMgr.getCertificate("www.test2.com",function(){
|
||
|
console.log(arguments);
|
||
|
});
|
||
|
|
||
|
certMgr.getCertificate("www.test3.com",function(){
|
||
|
console.log(arguments);
|
||
|
});
|
||
|
|
||
|
certMgr.getCertificate("www.test3.com",function(){
|
||
|
console.log(arguments);
|
||
|
});
|