vote up 0 vote down star

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.

flag

79% accept rate
$asn1->prepare(q< STRING >); – Brad Gilbert Dec 24 '08 at 17:14
search.cpan.org/perldoc?Convert::ASN1 – Brad Gilbert Dec 24 '08 at 17:15

2 Answers

vote up 1 vote down

Have you looked at Net::ASN1?

link|flag
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
Did you? It's empty. Just a stubs lying around for two years – vava Dec 24 '08 at 13:40
vote up 0 vote down check

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|flag

Your Answer

Get an OpenID
or

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