OCSPValidatorValve
Valve for validating X.509 certificates using OCSP. Operates on the current item set.
OCSP result is added to a property on the current item and can have one of the following values:
- GOOD
- REVOKED
- UNKNOWN
- ERROR
Properties
Example Configuration
{      
  "name": "OCSPValidatorValve",
  "enabled": "true",
  "config": {
    "source": "{{item.cert}}",
    "issuer_keystore_path": "ssl/ocsp_issuer.p12",
    "issuer_keystore_password": "***",
    "issuer_keystore_type": "PKCS12",
    "issuer_keystore_alias": "1",
    "ocsp_use_nonce": "false",
    "ocsp_use_signature": "true",
    "ocsp_signature_algorithm": "SHA256withRSA",
    "signer_keystore_path": "ssl/ocsp_auth.p12",
    "signer_keystore_password": "***",
    "signer_keystore_type": "PKCS12",
    "signer_keystore_alias": "1"
  }
}