Class: OpenSSL::X509::Certificate
- Inherits:
-
Object
- Object
- OpenSSL::X509::Certificate
- Defined in:
- ossl_x509cert.c
Instance Method Summary collapse
- #add_extension(extension) ⇒ Object
-
#check_private_key(key) ⇒ Object
Checks if ‘key’ is PRIV key for this cert.
-
#extensions ⇒ Object
Gets X509v3 extensions as array of X509Ext objects.
-
#extensions=(ary) ⇒ Object
Sets X509_EXTENSIONs.
- #initialize(*args) ⇒ Object constructor
- #inspect ⇒ Object
- #issuer ⇒ Object
- #issuer=(issuer) ⇒ Object
- #not_after ⇒ Object
- #not_after=(time) ⇒ Object
- #not_before ⇒ Object
- #not_before=(time) ⇒ Object
- #public_key ⇒ Object
-
#public_key=(key) ⇒ Object
NO DUP - OK.
- #serial ⇒ Object
- #serial=(num) ⇒ Object
- #sign(key, digest) ⇒ Object
- #signature_algorithm ⇒ Object
- #subject ⇒ Object
- #subject=(subject) ⇒ Object
- #to_der ⇒ Object
- #to_pem ⇒ Object (also: #to_s)
- #to_text ⇒ Object
-
#verify(key) ⇒ Object
Checks that cert signature is made with PRIVversion of this PUBLIC ‘key’.
- #version ⇒ Object
- #version=(version) ⇒ Object
Constructor Details
#initialize(*args) ⇒ Object
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'ossl_x509cert.c', line 128 static VALUE ossl_x509_initialize(int argc, VALUE *argv, VALUE self) { BIO *in; X509 *x509; VALUE arg; if (rb_scan_args(argc, argv, "01", &arg) == 0) { /* create just empty X509Cert */ return self; } arg = ossl_to_der_if_possible(arg); in = ossl_obj2bio(arg); x509 = PEM_read_bio_X509(in, (X509 **)&DATA_PTR(self), NULL, NULL); if (!x509) { BIO_reset(in); x509 = d2i_X509_bio(in, (X509 **)&DATA_PTR(self)); } BIO_free(in); if (!x509) ossl_raise(eX509CertError, NULL); return self; } |
Instance Method Details
#add_extension(extension) ⇒ Object
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 |
# File 'ossl_x509cert.c', line 579 static VALUE ossl_x509_add_extension(VALUE self, VALUE extension) { X509 *x509; X509_EXTENSION *ext; GetX509(self, x509); ext = DupX509ExtPtr(extension); if (!X509_add_ext(x509, ext, -1)) { /* DUPs ext - FREE it */ X509_EXTENSION_free(ext); ossl_raise(eX509CertError, NULL); } X509_EXTENSION_free(ext); return extension; } |
#check_private_key(key) ⇒ Object
Checks if ‘key’ is PRIV key for this cert
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 |
# File 'ossl_x509cert.c', line 506 static VALUE ossl_x509_check_private_key(VALUE self, VALUE key) { X509 *x509; EVP_PKEY *pkey; /* not needed private key, but should be */ pkey = GetPrivPKeyPtr(key); /* NO NEED TO DUP */ GetX509(self, x509); if (!X509_check_private_key(x509, pkey)) { OSSL_Warning("Check private key:%s", OSSL_ErrMsg()); return Qfalse; } return Qtrue; } |
#extensions ⇒ Object
Gets X509v3 extensions as array of X509Ext objects
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 |
# File 'ossl_x509cert.c', line 526 static VALUE ossl_x509_get_extensions(VALUE self) { X509 *x509; int count, i; X509_EXTENSION *ext; VALUE ary; GetX509(self, x509); count = X509_get_ext_count(x509); if (count < 0) { return rb_ary_new(); } ary = rb_ary_new2(count); for (i=0; i<count; i++) { ext = X509_get_ext(x509, i); /* NO DUP - don't free! */ rb_ary_push(ary, ossl_x509ext_new(ext)); } return ary; } |
#extensions=(ary) ⇒ Object
Sets X509_EXTENSIONs
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 |
# File 'ossl_x509cert.c', line 551 static VALUE ossl_x509_set_extensions(VALUE self, VALUE ary) { X509 *x509; X509_EXTENSION *ext; int i; Check_Type(ary, T_ARRAY); /* All ary's members should be X509Extension */ for (i=0; i<RARRAY(ary)->len; i++) { OSSL_Check_Kind(RARRAY(ary)->ptr[i], cX509Ext); } GetX509(self, x509); sk_X509_EXTENSION_pop_free(x509->cert_info->extensions, X509_EXTENSION_free); x509->cert_info->extensions = NULL; for (i=0; i<RARRAY(ary)->len; i++) { ext = DupX509ExtPtr(RARRAY(ary)->ptr[i]); if (!X509_add_ext(x509, ext, -1)) { /* DUPs ext - FREE it */ X509_EXTENSION_free(ext); ossl_raise(eX509CertError, NULL); } X509_EXTENSION_free(ext); } return ary; } |
#inspect ⇒ Object
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 |
# File 'ossl_x509cert.c', line 596 static VALUE ossl_x509_inspect(VALUE self) { VALUE str; char *cname = rb_class2name(rb_obj_class(self)); str = rb_str_new2("#<"); rb_str_cat2(str, cname); rb_str_cat2(str, " "); rb_str_cat2(str, "subject="); rb_str_append(str, rb_inspect(ossl_x509_get_subject(self))); rb_str_cat2(str, ", "); rb_str_cat2(str, "issuer="); rb_str_append(str, rb_inspect(ossl_x509_get_issuer(self))); rb_str_cat2(str, ", "); rb_str_cat2(str, "serial="); rb_str_append(str, rb_inspect(ossl_x509_get_serial(self))); rb_str_cat2(str, ", "); rb_str_cat2(str, "not_before="); rb_str_append(str, rb_inspect(ossl_x509_get_not_before(self))); rb_str_cat2(str, ", "); rb_str_cat2(str, "not_after="); rb_str_append(str, rb_inspect(ossl_x509_get_not_after(self))); str = rb_str_cat2(str, ">"); return str; } |
#issuer ⇒ Object
352 353 354 355 356 357 358 359 360 361 362 363 364 |
# File 'ossl_x509cert.c', line 352 static VALUE ossl_x509_get_issuer(VALUE self) { X509 *x509; X509_NAME *name; GetX509(self, x509); if(!(name = X509_get_issuer_name(x509))) { /* NO DUP - don't free! */ ossl_raise(eX509CertError, NULL); } return ossl_x509name_new(name); } |
#issuer=(issuer) ⇒ Object
366 367 368 369 370 371 372 373 374 375 376 377 |
# File 'ossl_x509cert.c', line 366 static VALUE ossl_x509_set_issuer(VALUE self, VALUE issuer) { X509 *x509; GetX509(self, x509); if (!X509_set_issuer_name(x509, GetX509NamePtr(issuer))) { /* DUPs name */ ossl_raise(eX509CertError, NULL); } return issuer; } |
#not_after ⇒ Object
408 409 410 411 412 413 414 415 416 417 418 419 420 |
# File 'ossl_x509cert.c', line 408 static VALUE ossl_x509_get_not_after(VALUE self) { X509 *x509; ASN1_TIME *asn1time; GetX509(self, x509); if (!(asn1time = X509_get_notAfter(x509))) { /* NO DUP - don't free! */ ossl_raise(eX509CertError, NULL); } return asn1time_to_time(asn1time); } |
#not_after=(time) ⇒ Object
422 423 424 425 426 427 428 429 430 431 432 433 434 435 |
# File 'ossl_x509cert.c', line 422 static VALUE ossl_x509_set_not_after(VALUE self, VALUE time) { X509 *x509; time_t sec; sec = time_to_time_t(time); GetX509(self, x509); if (!X509_time_adj(X509_get_notAfter(x509), 0, &sec)) { ossl_raise(eX509CertError, NULL); } return time; } |
#not_before ⇒ Object
379 380 381 382 383 384 385 386 387 388 389 390 391 |
# File 'ossl_x509cert.c', line 379 static VALUE ossl_x509_get_not_before(VALUE self) { X509 *x509; ASN1_UTCTIME *asn1time; GetX509(self, x509); if (!(asn1time = X509_get_notBefore(x509))) { /* NO DUP - don't free! */ ossl_raise(eX509CertError, NULL); } return asn1time_to_time(asn1time); } |
#not_before=(time) ⇒ Object
393 394 395 396 397 398 399 400 401 402 403 404 405 406 |
# File 'ossl_x509cert.c', line 393 static VALUE ossl_x509_set_not_before(VALUE self, VALUE time) { X509 *x509; time_t sec; sec = time_to_time_t(time); GetX509(self, x509); if (!X509_time_adj(X509_get_notBefore(x509), 0, &sec)) { ossl_raise(eX509CertError, NULL); } return time; } |
#public_key ⇒ Object
437 438 439 440 441 442 443 444 445 446 447 448 449 |
# File 'ossl_x509cert.c', line 437 static VALUE ossl_x509_get_public_key(VALUE self) { X509 *x509; EVP_PKEY *pkey; GetX509(self, x509); if (!(pkey = X509_get_pubkey(x509))) { /* adds an reference */ ossl_raise(eX509CertError, NULL); } return ossl_pkey_new(pkey); /* NO DUP - OK */ } |
#public_key=(key) ⇒ Object
NO DUP - OK
451 452 453 454 455 456 457 458 459 460 461 462 |
# File 'ossl_x509cert.c', line 451 static VALUE ossl_x509_set_public_key(VALUE self, VALUE key) { X509 *x509; GetX509(self, x509); if (!X509_set_pubkey(x509, GetPKeyPtr(key))) { /* DUPs pkey */ ossl_raise(eX509CertError, NULL); } return key; } |
#serial ⇒ Object
282 283 284 285 286 287 288 289 290 |
# File 'ossl_x509cert.c', line 282 static VALUE ossl_x509_get_serial(VALUE self) { X509 *x509; GetX509(self, x509); return asn1integer_to_num(X509_get_serialNumber(x509)); } |
#serial=(num) ⇒ Object
292 293 294 295 296 297 298 299 300 301 302 303 |
# File 'ossl_x509cert.c', line 292 static VALUE ossl_x509_set_serial(VALUE self, VALUE num) { X509 *x509; GetX509(self, x509); x509->cert_info->serialNumber = num_to_asn1integer(num, X509_get_serialNumber(x509)); return num; } |
#sign(key, digest) ⇒ Object
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 |
# File 'ossl_x509cert.c', line 464 static VALUE ossl_x509_sign(VALUE self, VALUE key, VALUE digest) { X509 *x509; EVP_PKEY *pkey; const EVP_MD *md; pkey = GetPrivPKeyPtr(key); /* NO NEED TO DUP */ md = GetDigestPtr(digest); GetX509(self, x509); if (!X509_sign(x509, pkey, md)) { ossl_raise(eX509CertError, NULL); } return self; } |
#signature_algorithm ⇒ Object
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
# File 'ossl_x509cert.c', line 305 static VALUE ossl_x509_get_signature_algorithm(VALUE self) { X509 *x509; BIO *out; VALUE str; GetX509(self, x509); out = BIO_new(BIO_s_mem()); if (!out) ossl_raise(eX509CertError, NULL); if (!i2a_ASN1_OBJECT(out, x509->cert_info->signature->algorithm)) { BIO_free(out); ossl_raise(eX509CertError, NULL); } str = ossl_membio2str(out); return str; } |
#subject ⇒ Object
325 326 327 328 329 330 331 332 333 334 335 336 337 |
# File 'ossl_x509cert.c', line 325 static VALUE ossl_x509_get_subject(VALUE self) { X509 *x509; X509_NAME *name; GetX509(self, x509); if (!(name = X509_get_subject_name(x509))) { /* NO DUP - don't free! */ ossl_raise(eX509CertError, NULL); } return ossl_x509name_new(name); } |
#subject=(subject) ⇒ Object
339 340 341 342 343 344 345 346 347 348 349 350 |
# File 'ossl_x509cert.c', line 339 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; } |
#to_der ⇒ Object
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'ossl_x509cert.c', line 172 static VALUE ossl_x509_to_der(VALUE self) { X509 *x509; VALUE str; long len; unsigned char *p; GetX509(self, x509); if ((len = i2d_X509(x509, NULL)) <= 0) ossl_raise(eX509CertError, NULL); str = rb_str_new(0, len); p = RSTRING(str)->ptr; if (i2d_X509(x509, &p) <= 0) ossl_raise(eX509CertError, NULL); ossl_str_adjust(str, p); return str; } |
#to_pem ⇒ Object Also known as: to_s
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
# File 'ossl_x509cert.c', line 192 static VALUE ossl_x509_to_pem(VALUE self) { X509 *x509; BIO *out; VALUE str; GetX509(self, x509); out = BIO_new(BIO_s_mem()); if (!out) ossl_raise(eX509CertError, NULL); if (!PEM_write_bio_X509(out, x509)) { BIO_free(out); ossl_raise(eX509CertError, NULL); } str = ossl_membio2str(out); return str; } |
#to_text ⇒ Object
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
# File 'ossl_x509cert.c', line 212 static VALUE ossl_x509_to_text(VALUE self) { X509 *x509; BIO *out; VALUE str; GetX509(self, x509); out = BIO_new(BIO_s_mem()); if (!out) ossl_raise(eX509CertError, NULL); if (!X509_print(out, x509)) { BIO_free(out); ossl_raise(eX509CertError, NULL); } str = ossl_membio2str(out); return str; } |
#verify(key) ⇒ Object
Checks that cert signature is made with PRIVversion of this PUBLIC ‘key’
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 |
# File 'ossl_x509cert.c', line 484 static VALUE ossl_x509_verify(VALUE self, VALUE key) { X509 *x509; EVP_PKEY *pkey; int i; pkey = GetPKeyPtr(key); /* NO NEED TO DUP */ GetX509(self, x509); if ((i = X509_verify(x509, pkey)) < 0) { ossl_raise(eX509CertError, NULL); } if (i > 0) { return Qtrue; } return Qfalse; } |
#version ⇒ Object
255 256 257 258 259 260 261 262 263 |
# File 'ossl_x509cert.c', line 255 static VALUE ossl_x509_get_version(VALUE self) { X509 *x509; GetX509(self, x509); return LONG2NUM(X509_get_version(x509)); } |
#version=(version) ⇒ Object
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
# File 'ossl_x509cert.c', line 265 static VALUE ossl_x509_set_version(VALUE self, VALUE version) { X509 *x509; long ver; if ((ver = NUM2LONG(version)) < 0) { ossl_raise(eX509CertError, "version must be >= 0!"); } GetX509(self, x509); if (!X509_set_version(x509, ver)) { ossl_raise(eX509CertError, NULL); } return version; } |