Searched defs:suite (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/kssl/kssladm/
H A Dkssladm_create.c979 const char *suite; member in struct:csuite
996 char *suite; local
1008 suite = strtok(suites, ",");
1011 if (strcasecmp(suite, cipher_suites[i].suite) == 0) {
1022 "Unknown Cipher suite name: %s\n", suite);
1025 } while ((suite = strtok(NULL, ",")) != NULL);
/illumos-gate/usr/src/uts/common/inet/kssl/
H A Dksslproto.h38 #include <inet/kssl/kssl.h> /* Cipher suite definitions */
70 * More than enough for the cipher suite that needs the
227 uint16_t suite; member in struct:ssl3CipherSuiteDefStr
H A Dksslrec.c454 * or SSL_MISS if no cipher suite of the server matches the list received
466 uint16_t suite, selected_suite; local
515 /* read cipher suite length */
532 /* The length has to be even since a cipher suite is 2-byte long. */
542 suite = ssl->sid.cipher_suite;
545 uint16_t, suite,
548 /* Check for regular (true) cipher suite. */
549 if (suitesp[j] == ((suite >> 8) & 0xff) &&
550 suitesp[j + 1] == (suite & 0xff)) {
552 uint16_t, suite);
2085 uint16_t suite, selected_suite; local
[all...]

Completed in 67 milliseconds