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;
   |