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

/illumos-gate/usr/src/cmd/lofiadm/
H A Dmain.c653 crypto_get_mechanism_list_t *kciphers = NULL; local
665 kciphers = malloc(sizeof (crypto_get_mechanism_list_t) +
667 if (kciphers == NULL)
670 kciphers->ml_count = count;
678 if (ioctl(fd, CRYPTO_GET_MECHANISM_LIST, kciphers) == -1) {
683 if (kciphers->ml_return_value == CRYPTO_BUFFER_TOO_SMALL) {
684 count = kciphers->ml_count;
685 free(kciphers);
686 kciphers = malloc(sizeof (crypto_get_mechanism_list_t) +
688 if (kciphers
[all...]

Completed in 47 milliseconds