Class: R509::Validity::Checker
- Inherits:
-
Object
- Object
- R509::Validity::Checker
- Defined in:
- lib/r509/validity.rb
Overview
abstract base class for a Checker
Direct Known Subclasses
Instance Method Summary (collapse)
- - (Object) check(issuer, serial)
-
- (Boolean) is_available?
is_available? is meant to be implemented to check if the backend store you choose to implement is currently working.
Instance Method Details
- (Object) check(issuer, serial)
58 59 60 |
# File 'lib/r509/validity.rb', line 58 def check(issuer, serial) raise NotImplementedError, "You must call #check on a subclass of Checker" end |
- (Boolean) is_available?
is_available? is meant to be implemented to check if the backend store you choose to implement is currently working. see r509-ocsp-responder and r509-validity-redis for an example of use
64 65 66 |
# File 'lib/r509/validity.rb', line 64 def is_available? raise NotImplementedError, "You must call #is_available? on a subclass of Checker" end |