skip book previous and next navigation links
go up to top of book: HP Open Source Security for OpenVMS Volume 2:... HP Open Source Security for OpenVMS Volume 2:...
go to beginning of appendix: Data Structures and Header Files Data Structures and Header Files
go to previous page: SSL_SESSION Structure SSL_SESSION Structure
go to next page: BIO StructureBIO Structure
end of book navigation links

SSL_CIPHER Structure 



The SSL_CIPHER structure is defined in ssl.h.
/* used to hold info on the particular ciphers used */
 
typedef struct ssl_cipher_st
 
{
	int valid;
	const char *name;		/* text name */
	unsigned long id;		/* id, 4 bytes, first is version */
	unsigned long algorithms;	/* what ciphers are used */
	unsigned long algo_strength;	/* strength and export flags */
	unsigned long algorithm2;	/* Extra flags */
	int strength_bits;		/* Number of bits really used */
	int alg_bits;			/* Number of bits for algorithm */
	unsigned long mask;		/* used for matching */
	unsigned long mask_strength;	/* also used for matching */
 
} SSL_CIPHER;

go to previous page: SSL_SESSION Structure SSL_SESSION Structure
go to next page: BIO StructureBIO Structure