mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-04-21 15:34:22 +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);
|
|
}); |