rsa.c 275 Bytes
#include "rsa.h"

#include <stdio.h>

void rsa_init(rsa_context *ctx) {}

void rsa_free(rsa_context *ctx) {}

int rsa_gen_key(rsa_context *ctx, size_t nbits, big_uint exponent) {
    return 0;
}

int rsa_write_public_key(const rsa_context *ctx, FILE *file) {
    return 0;
}