Can somebody advise me what this code does and how can I convert it to Ruby in most simple way?

    #!perl

    use Convert::ASN1;

    my $asn1 = Convert::ASN1->new(encoding => 'DER');
    $asn1->prepare(q<
        Algorithm ::= SEQUENCE {
            oid OBJECT IDENTIFIER,
            opt ANY OPTIONAL
        }
        Signature ::= SEQUENCE {
            alg Algorithm,
            sig BIT STRING
        }
    >);

   my $data = $asn1->encode(sig => $body,
        alg => {oid => sha512WithRSAEncryption()});

It's a piece of a mexumgen, Perl library which sign update.rdf for Mozilla products with openssl.

link|improve this question

70% accept rate
$asn1->prepare(q< STRING >); – Brad Gilbert Dec 24 '08 at 17:14
feedback

2 Answers

up vote 1 down vote accepted

This particular example can be converted as

data = ["308191300b06092a864886f70d01010d03818100" + body.unpack("H*")].pack("H*")

where "308191300b06092a864886f70d01010d03818100" is prefix made from that ASN expression up to BIT STRING field (including size of BIT STRING), pack("H") converts binary data to hex representation and unpack("H") converts string in hex back to binary.

But for more general ASN converter it's better to use OpenSSL::ASN1, which comes with ruby as standard library. It's completely undocumented but some people managed to have some use of it

link|improve this answer
In Ruby 1.9.3 it is documented. Check ruby-doc.org/stdlib-1.9.3/libdoc/openssl/rdoc/OpenSSL/ASN1.html. – Indika Feb 9 at 7:43
feedback

Have you looked at Net::ASN1?

link|improve this answer
Hm, can't even find how to download code of it. – vava Dec 24 '08 at 12:35
Did you checked the svn repo? rubyforge.org/scm/?group_id=1581 – Keltia Dec 24 '08 at 13:38
1  
Did you? It's empty. Just a stubs lying around for two years – vava Dec 24 '08 at 13:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.