Function not used outside FIPS builds.
This commit is contained in:
parent
c6fa97a6d6
commit
2e51a4caa3
1 changed files with 2 additions and 1 deletions
|
@ -153,7 +153,7 @@ static void pkey_rsa_cleanup(EVP_PKEY_CTX *ctx)
|
|||
OPENSSL_free(rctx);
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef OPENSSL_FIPS
|
||||
/* FIP checker. Return value indicates status of context parameters:
|
||||
* 1 : redirect to FIPS.
|
||||
* 0 : don't redirect to FIPS.
|
||||
|
@ -177,6 +177,7 @@ static int pkey_fips_check_ctx(EVP_PKEY_CTX *ctx)
|
|||
return rv;
|
||||
return 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
static int pkey_rsa_sign(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen,
|
||||
const unsigned char *tbs, size_t tbslen)
|
||||
|
|
Loading…
Reference in a new issue