mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
13 lines
385 B
C
13 lines
385 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "missing_keyctl.h"
|
|
|
|
/* Like TAKE_PTR() but for key_serial_t, resetting them to -1 */
|
|
#define TAKE_KEY_SERIAL(key_serial) TAKE_GENERIC(key_serial, key_serial_t, -1)
|
|
|
|
int keyring_read(key_serial_t serial, void **ret, size_t *ret_size);
|
|
int keyring_describe(key_serial_t serial, char **ret);
|