Skip to content
/ ocsp Public
forked from TechTeamer/ocsp

OCSP Stapling/Checking for node.js

License

Notifications You must be signed in to change notification settings

Baka-D/ocsp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OCSP client and server implementation in nodejs

Server Usage Updated!

Usage:

var server = ocsp.Server.create({
  caCert: cacert, //optional, will be the same as `cert` if not supplied
  cert: cert,
  key: key
});

server.addCert(43, 'good');
server.addCert(44, 'revoked', {
  revocationTime: new Date(),
  revocationReason: 'CACompromise'
});

server.listen(8000);

OCSP Server, i.o.w. HTTP server providing OCSP responses for supplied OCSP requests.


This package is a fork of https://github.com/indutny/ocsp

Changelog

1.0.1

  • node 16,18 compatibility
  • tests fixed

1.0.0

About

OCSP Stapling/Checking for node.js

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%