remove unused variable
This commit is contained in:
+9
-9
@@ -12,28 +12,28 @@
|
||||
|
||||
static int DEBUG = 0;
|
||||
|
||||
int fips(const char *pkey, struct audit_fips *st_audit_fips, struct keyinfo *st_keyinfo, const int type, const int is_pubkey, const int to_stdout){
|
||||
int fips(const char *pkey, struct audit_fips *st_audit_fips, struct keyinfo *st_keyinfo, const int type, const int is_pubkey){
|
||||
int res;
|
||||
|
||||
if(type == TYPE_RSA){
|
||||
/* If it's a pub key, we are going to analyse it */
|
||||
if (is_pubkey == 1)
|
||||
res = fips_pubkey_rsa(st_audit_fips, st_keyinfo, pkey, to_stdout);
|
||||
res = fips_pubkey_rsa(st_audit_fips, st_keyinfo, pkey);
|
||||
else
|
||||
res = fips_privkey_rsa(st_audit_fips, st_keyinfo, pkey, to_stdout);
|
||||
res = fips_privkey_rsa(st_audit_fips, st_keyinfo, pkey);
|
||||
}
|
||||
else if (type == TYPE_X509){
|
||||
if (openssl_version() == 1)
|
||||
res = fips_x509_v1(st_audit_fips, st_keyinfo, pkey, to_stdout);
|
||||
res = fips_x509_v1(st_audit_fips, st_keyinfo, pkey);
|
||||
else
|
||||
res = fips_x509_v3(st_audit_fips, st_keyinfo, pkey, to_stdout);
|
||||
res = fips_x509_v3(st_audit_fips, st_keyinfo, pkey);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
/*
|
||||
* This function load public RSA key and make an audit on it
|
||||
*/
|
||||
static int fips_pubkey_rsa(struct audit_fips *st_audit_fips, struct keyinfo *st_keyinfo, const char *pkey, const int to_stdout) {
|
||||
static int fips_pubkey_rsa(struct audit_fips *st_audit_fips, struct keyinfo *st_keyinfo, const char *pkey) {
|
||||
struct rsa *rsa;
|
||||
size_t keysize;
|
||||
int res;
|
||||
@@ -62,7 +62,7 @@ static int fips_pubkey_rsa(struct audit_fips *st_audit_fips, struct keyinfo *st_
|
||||
/*
|
||||
* This function audit RSA private key
|
||||
*/
|
||||
static int fips_privkey_rsa(struct audit_fips *st_audit_fips, struct keyinfo *st_keyinfo, const char *pkey, const int to_stdout) {
|
||||
static int fips_privkey_rsa(struct audit_fips *st_audit_fips, struct keyinfo *st_keyinfo, const char *pkey) {
|
||||
int res;
|
||||
struct rsa *rsa = NULL;
|
||||
|
||||
@@ -342,7 +342,7 @@ static int check_exponent(const BIGNUM *e, char *buf, unsigned long *exponent){
|
||||
/*
|
||||
* This function load X509 certificate for OpenSSL v1
|
||||
*/
|
||||
static int fips_x509_v1(struct audit_fips *st_audit_fips, struct keyinfo *st_keyinfo, const char *pkey, const int to_stdout){
|
||||
static int fips_x509_v1(struct audit_fips *st_audit_fips, struct keyinfo *st_keyinfo, const char *pkey){
|
||||
struct rsa *rsa = (struct rsa*)malloc(sizeof(struct rsa*));
|
||||
|
||||
if (rsa == NULL){
|
||||
@@ -389,7 +389,7 @@ static int fips_x509_v1(struct audit_fips *st_audit_fips, struct keyinfo *st_key
|
||||
/*
|
||||
* This function load X509 certificate for OpenSSL v3
|
||||
*/
|
||||
static int fips_x509_v3(struct audit_fips *st_audit_fips, struct keyinfo *st_keyinfo, const char *pkey, const int to_stdout){
|
||||
static int fips_x509_v3(struct audit_fips *st_audit_fips, struct keyinfo *st_keyinfo, const char *pkey){
|
||||
struct rsa *rsa = (struct rsa*)malloc(sizeof(struct rsa*));
|
||||
|
||||
if (rsa == NULL){
|
||||
|
||||
+5
-5
@@ -40,10 +40,10 @@ struct keyinfo{
|
||||
int algo;
|
||||
};
|
||||
|
||||
int fips(const char *, struct audit_fips *, struct keyinfo *, const int, const int, const int);
|
||||
int fips(const char *, struct audit_fips *, struct keyinfo *, const int, const int);
|
||||
/* RSA */
|
||||
static int fips_pubkey_rsa(struct audit_fips *, struct keyinfo *, const char *, const int);
|
||||
static int fips_privkey_rsa(struct audit_fips *, struct keyinfo *, const char *, const int);
|
||||
static int fips_pubkey_rsa(struct audit_fips *, struct keyinfo *, const char *);
|
||||
static int fips_privkey_rsa(struct audit_fips *, struct keyinfo *, const char *);
|
||||
static int loadkeys_rsa_v1(struct rsa **, const char *, int *format);
|
||||
static int loadkeys_rsa_v3(struct rsa **, const char *, int *format);
|
||||
static int load_priv_rsa_keys_v1(struct rsa **, const char *);
|
||||
@@ -51,8 +51,8 @@ static int load_priv_rsa_keys_v3(struct rsa **, const char *);
|
||||
static void audit_rsa_keys(struct rsa *, struct audit_fips *, struct keyinfo *, const char *);
|
||||
|
||||
/* X509 */
|
||||
static int fips_x509_v1(struct audit_fips *, struct keyinfo *, const char *, const int);
|
||||
static int fips_x509_v3(struct audit_fips *, struct keyinfo *, const char *, const int);
|
||||
static int fips_x509_v1(struct audit_fips *, struct keyinfo *, const char *);
|
||||
static int fips_x509_v3(struct audit_fips *, struct keyinfo *, const char *);
|
||||
|
||||
static int check_exponent(const BIGNUM *, char *, unsigned long *);
|
||||
static void clean_rsa_st(struct rsa *);
|
||||
|
||||
Reference in New Issue
Block a user