Method: OpenSSL::X509::CRL#next_update
- Defined in:
- ossl_x509crl.c
#next_update ⇒ Object
230 231 232 233 234 235 236 237 238 |
# File 'ossl_x509crl.c', line 230 static VALUE ossl_x509crl_get_next_update(VALUE self) { X509_CRL *crl; GetX509CRL(self, crl); return asn1time_to_time(X509_CRL_get_nextUpdate(crl)); } |