Class: OpenSSL::ASN1::ObjectId

Inherits:
Primitive show all
Defined in:
ossl_asn1.c,
ossl_asn1.c

Overview

Represents the primitive object id for OpenSSL::ASN1

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Primitive

#initialize, #to_der

Methods inherited from ASN1Data

#initialize, #to_der

Constructor Details

This class inherits a constructor from OpenSSL::ASN1::Primitive

Class Method Details

.OpenSSL::ASN1::ObjectId.register(object_id, short_name, long_name) ⇒ Object

This adds a new ObjectId to the internal tables. Where object_id is the numerical form, short_name is the short name, and long_name is the long name.

Returns true if successful. Raises an OpenSSL::ASN1::ASN1Error if it fails.



1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
# File 'ossl_asn1.c', line 1235

static VALUE
ossl_asn1obj_s_register(VALUE self, VALUE oid, VALUE sn, VALUE ln)
{
    StringValueCStr(oid);
    StringValueCStr(sn);
    StringValueCStr(ln);

    if(!OBJ_create(RSTRING_PTR(oid), RSTRING_PTR(sn), RSTRING_PTR(ln)))
	ossl_raise(eASN1Error, NULL);

    return Qtrue;
}

Instance Method Details

#lnString #long_nameString Also known as: long_name

The long name of the ObjectId, as defined in <openssl/objects.h>.

Overloads:

  • #lnString

    Returns:

    • (String)
  • #long_nameString

    Returns:

    • (String)


1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
# File 'ossl_asn1.c', line 1275

static VALUE
ossl_asn1obj_get_ln(VALUE self)
{
    VALUE val, ret = Qnil;
    int nid;

    val = ossl_asn1_get_value(self);
    if ((nid = OBJ_txt2nid(StringValueCStr(val))) != NID_undef)
	ret = rb_str_new2(OBJ_nid2ln(nid));

    return ret;
}

#oidString

Returns a String representing the Object Identifier in the dot notation, e.g. “1.2.3.4.5”

Returns:

  • (String)


1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
# File 'ossl_asn1.c', line 1317

static VALUE
ossl_asn1obj_get_oid(VALUE self)
{
    VALUE str;
    ASN1_OBJECT *a1obj;
    int state;

    a1obj = obj_to_asn1obj(ossl_asn1_get_value(self));
    str = rb_protect(asn1obj_get_oid_i, (VALUE)a1obj, &state);
    ASN1_OBJECT_free(a1obj);
    if (state)
	rb_jump_tag(state);
    return str;
}

#snString #short_nameString Also known as: short_name

The short name of the ObjectId, as defined in <openssl/objects.h>.

Overloads:

  • #snString

    Returns:

    • (String)
  • #short_nameString

    Returns:

    • (String)


1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
# File 'ossl_asn1.c', line 1255

static VALUE
ossl_asn1obj_get_sn(VALUE self)
{
    VALUE val, ret = Qnil;
    int nid;

    val = ossl_asn1_get_value(self);
    if ((nid = OBJ_txt2nid(StringValueCStr(val))) != NID_undef)
	ret = rb_str_new2(OBJ_nid2sn(nid));

    return ret;
}