How do I store a public key into a database and be able to use it later with this library? I am able to save the public key into a file and I could just save the key into a temporary file, and then read that temporary file into a string and store it into a database and the reverse the process by taking the string from the database and writing it into a temporary file and loading the file into a public key.
Is there not a simpler way to achieve this? Or will one have to work with temporary files to achieve this?