Add SSL_FIPS flag for FIPS 140-2 approved ciphersuites and add a new

strength "FIPS" to represent all FIPS approved ciphersuites without NULL
encryption.
This commit is contained in:
Dr. Stephen Henson
2008-09-10 16:02:09 +00:00
parent 2b7b1cad10
commit 3ad74edce8
4 changed files with 25 additions and 21 deletions

View File

@@ -370,7 +370,7 @@
* be possible.
*/
#define SSL_EXP_MASK 0x00000003L
#define SSL_STRONG_MASK 0x000000fcL
#define SSL_STRONG_MASK 0x000001fcL
#define SSL_NOT_EXP 0x00000001L
#define SSL_EXPORT 0x00000002L
@@ -383,6 +383,7 @@
#define SSL_LOW 0x00000020L
#define SSL_MEDIUM 0x00000040L
#define SSL_HIGH 0x00000080L
#define SSL_FIPS 0x00000100L
/* we have used 000000ff - 24 bits left to go */