method
subject=
v2_4_6 -
Show latest stable
- Class:
OpenSSL::X509::Certificate
subject=(p1)public
No documentation available.
static VALUE
ossl_x509_set_subject(VALUE self, VALUE subject)
{
X509 *x509;
GetX509(self, x509);
if (!X509_set_subject_name(x509, GetX509NamePtr(subject))) { /* DUPs name */
ossl_raise(eX509CertError, NULL);
}
return subject;
}