I need to extract modulus, private exponent, public exponent, primes, etc. from an RSA private key given in PEM format. This is for an embedded system where I cannot install any crypto or RSA libraries on the target system, so everything should be done in native C. Any pointers to existing code or hints how this is efficiently done would be appreciated.
Parsing a PEM key in C without extra libraries
1.6k Views Asked by Peter B. At
2
There are 2 best solutions below
Related Questions in C
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in RSA
- An exception of type 'System.Security.Cryptography.CryptographicException': keyset does not exist
- Get SecKeyRef from modulus/exponent
- Get the big-endian byte sequence of integer in Python
- Play 2.4.0 https support - RSA no longer available?
- C# AES and RSA File Encryption - How to use IV?
- How to verify a .Onion domain against a private key
- C# equivalent to Java RSA/ECB/OAEPWithSHA-256AndMGF1Padding
- OpenSSL.net Key generation exception
- Get RSA keys in a "simple" form
- RSA encryption in Android and Java
- reading and writing data as BigInteger datatype numbers from a file in java
- Digital Signature in java / android (RSA keys)
- extracting public key from private key dynamically using M2Crypto
- How Restful Request Public Key and Private Key Works for each request
- Decoding an RSA PublicKey in C++/Qt
Related Questions in PEM
- Verifying XML Signature in Powershell with PEM Certificate
- Get SHA1 sign of string with DSA private key from PEM file
- How to extract public-key from PEM certificate in hexadecimal format
- How can I decrypt data in chunks in c# using a private key after encrypting in php using a public key?
- How to read an RSA public key from a its PEM format string using the OpenSSL API?
- Encrypt in C# && Decrypt in PHP using PEM file
- PEM to PublicKey in Android
- How to compare X509 certificate object with another .pem extension certificate
- getting error while trying to convert pfx without password to jks
- How to Create a PEM File from Windows
- how to generate public and private key in PEM format
- Parsing a PEM key in C without extra libraries
- how to generate public/private key pair with like below in ios, swift
- Don't get any push notifications after changing to another apple account
- NGINX HTTPS Server barfing on .crt and .key files
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
PEM file contains der encoded RSA Private Key in base64 format.
First you have to base64 decode it to get the original der encoded bytes. Then you have to parse the der encoded data.
As suggested by Lie Ryan, you can statically link some C libraries to do this. Or you can refer to the source codes of an existing library and write your own parser to do that.
For a light-weight library, I recommend looking at libtomcrypto's der routines in case you are going to write your own parser.
The same library also contains functions for base64 encoding and decoding.