Search code examples
rsaasn.1der

ASN.1 to DER encoding


I'm trying to generate RSA public key I have ASN.1 code I need to encode with DER

RSAPublicKey ::= SEQUENCE {
modulus           INTEGER,  7120255303029382831
publicExponent    INTEGER   4242026487
}
My DER code 30 10 08 02 62 D0 3A 79 2F 28 5E AF 02 04 FC D8 2F F7

My DER code is wrong please help me how can I write as correctly


Solution

  • You can/should use a tool to do that.

    https://asn1.io/asn1playground/

    Compile your spec

    Compile your specification

    Encode a value

    Decode a value

    Read the result

    Read the result