You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As part of PR #490, which adds support for ECDSA we will add a basic PEM file writer for public and private keys. However, the current implementation depends on the standard library, because the data is base64 encoded. While we have a base64 decoder:
As part of PR #490, which adds support for ECDSA we will add a basic PEM file writer for public and private keys. However, the current implementation depends on the standard library, because the data is
base64
encoded. While we have abase64
decoder:https://github.com/mratsim/constantine/blob/master/constantine/serialization/codecs.nim#L114-L174
we lack a
base64
encoder.Further, the current PEM file implementation allocates for the string we write to. These things should be addressed in the near future.
The text was updated successfully, but these errors were encountered: