|
|
|
@ -27,6 +27,9 @@
|
|
|
|
|
#include <string.h> /* memset */
|
|
|
|
|
#include <openssl/sha.h> /* SHA_DIGEST_LENGTH */
|
|
|
|
|
#include <openssl/rand.h>
|
|
|
|
|
#include <openssl/err.h>
|
|
|
|
|
#include <openssl/dherr.h>
|
|
|
|
|
#include <openssl/dsaerr.h>
|
|
|
|
|
#include "crypto/bn.h"
|
|
|
|
|
#include "internal/ffc.h"
|
|
|
|
|
|
|
|
|
@ -40,6 +43,9 @@ static int ffc_validate_LN(size_t L, size_t N, int type)
|
|
|
|
|
/* Valid DH L,N parameters from SP800-56Ar3 5.5.1 Table 1 */
|
|
|
|
|
if (L == 2048 && (N == 224 || N == 256))
|
|
|
|
|
return 112;
|
|
|
|
|
#ifndef OPENSSL_NO_DH
|
|
|
|
|
DHerr(0, DH_R_BAD_FFC_PARAMETERS);
|
|
|
|
|
#endif
|
|
|
|
|
} else if (type == FFC_PARAM_TYPE_DSA) {
|
|
|
|
|
/* Valid DSA L,N parameters from FIPS 186-4 Section 4.2 */
|
|
|
|
|
if (L == 1024 && N == 160)
|
|
|
|
@ -48,6 +54,9 @@ static int ffc_validate_LN(size_t L, size_t N, int type)
|
|
|
|
|
return 112;
|
|
|
|
|
if (L == 3072 && N == 256)
|
|
|
|
|
return 128;
|
|
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
|
DSAerr(0, DSA_R_BAD_FFC_PARAMETERS);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|