This repository was archived by the owner on May 18, 2024. It is now read-only.

Description
The following two lines generate two identical char arrays.
|
char_array_to_c(cary, sizeof(cary), "e1"); |
|
char_array_to_c(cary, sizeof(cary), "e2"); |
One called e1 and the other e2.
I can't figure out what's the use two identical array literals.
They appear to be used only in the function modp_b64_encode which could work well with only one of them.
Is this deliberate?
For what purpose?