-
Notifications
You must be signed in to change notification settings - Fork 169
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Right now, there is a PR open (#22) that will allow the RSA crate to be used in core+alloc environments (e.g. environments without libstd, but where a dynamic allocator is available).
The next step is for the RSA crate to support core-only environments. This would require multiple changes: num-bigint-dig
would need to be represented either as a stack-allocated array (GenericArray? ArrayVec?) or a slice reference (wooo lifetimes) instead of a heap-allocated vector. Furthermore, we'll need to make extra sure that all the operations are bounded within a certain numeric range.
newpavlov, tarcieri, dignifiedquire, SadCl0wn, dobromyslov and 3 more
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request