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
The Writer struct is used to write our public keys to disk. It is essentially the opposite of the Reader struct. However, there is one key difference - Writer uses an internal representation of Vec, where as Reader uses an array. Writer should be modified to remove the heap allocations and bring the implementation more in line with Reader.
The text was updated successfully, but these errors were encountered:
The
Writer
struct is used to write our public keys to disk. It is essentially the opposite of theReader
struct. However, there is one key difference -Writer
uses an internal representation ofVec
, where asReader
uses an array.Writer
should be modified to remove the heap allocations and bring the implementation more in line withReader
.The text was updated successfully, but these errors were encountered: