Move RSA key generation into the wrappers.
This commit is contained in:
parent
911c05f873
commit
551cd19406
18 changed files with 413 additions and 68 deletions
|
|
@ -26,7 +26,7 @@
|
|||
#include "logger.h"
|
||||
#include "rsa.h"
|
||||
|
||||
// Base64 encoding/decoding tables
|
||||
// Base64 decoding table
|
||||
|
||||
static const uint8_t b64d[128] = {
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
|
|
@ -53,8 +53,6 @@ static const uint8_t b64d[128] = {
|
|||
0xff, 0xff
|
||||
};
|
||||
|
||||
static const char b64e[64] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
||||
|
||||
// PEM encoding/decoding functions
|
||||
|
||||
static bool pem_decode(FILE *fp, const char *header, uint8_t *buf, size_t size, size_t *outsize) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue