in java you write
new DERObjectIdentifier("1.3.6.1.4.1.311.20.2.3")
that translated to ruby syntax is
DERObjectIdentifier.new("1.3.6.1.4.1.311.20.2.3")- Kristian On Fri, Jan 18, 2013 at 8:55 PM, kristian <[email protected]> wrote: > On Fri, Jan 18, 2013 at 8:48 PM, Carl Bourne <[email protected]> wrote: >> v.add.DERObjectIdentifier.new("1.3.6.1.4.1.311.20.2.3") > > > v.add(DERObjectIdentifier.new("1.3.6.1.4.1.311.20.2.3")) > > DERObjectIdentifier is Class object and you want to add an instance of it to v --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
