mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-28 00:21:48 +03:00
More granular define selections within code to allow for smaller code
sizes
This commit is contained in:
@ -27,6 +27,10 @@
|
||||
#ifndef POLARSSL_RSA_H
|
||||
#define POLARSSL_RSA_H
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#if defined(POLARSSL_RSA_C)
|
||||
|
||||
#include "bignum.h"
|
||||
#include "md.h"
|
||||
|
||||
@ -520,4 +524,6 @@ int rsa_self_test( int verbose );
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* POLARSSL_RSA_C */
|
||||
|
||||
#endif /* rsa.h */
|
||||
|
Reference in New Issue
Block a user