Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-5.15.0-185 /
include /
keys /
Delete
Unzip
Name
Size
Permission
Date
Action
asymmetric-parser.h
981
B
-rw-r--r--
2021-11-01 05:53
asymmetric-subtype.h
1.66
KB
-rw-r--r--
2021-11-01 05:53
asymmetric-type.h
2.79
KB
-rw-r--r--
2021-11-01 05:53
big_key-type.h
816
B
-rw-r--r--
2021-11-01 05:53
ceph-type.h
162
B
-rw-r--r--
2021-11-01 05:53
dns_resolver-type.h
482
B
-rw-r--r--
2021-11-01 05:53
encrypted-type.h
1.09
KB
-rw-r--r--
2021-11-01 05:53
keyring-type.h
337
B
-rw-r--r--
2021-11-01 05:53
request_key_auth-type.h
747
B
-rw-r--r--
2021-11-01 05:53
rxrpc-type.h
2.34
KB
-rw-r--r--
2021-11-01 05:53
system_keyring.h
2.45
KB
-rw-r--r--
2021-11-01 05:53
trusted-type.h
2.2
KB
-rw-r--r--
2026-06-20 00:54
trusted_tee.h
286
B
-rw-r--r--
2021-11-01 05:53
trusted_tpm.h
2.68
KB
-rw-r--r--
2021-11-01 05:53
user-type.h
1.91
KB
-rw-r--r--
2021-11-01 05:53
Save
Rename
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* Asymmetric public-key cryptography data parser * * See Documentation/crypto/asymmetric-keys.rst * * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) */ #ifndef _KEYS_ASYMMETRIC_PARSER_H #define _KEYS_ASYMMETRIC_PARSER_H /* * Key data parser. Called during key instantiation. */ struct asymmetric_key_parser { struct list_head link; struct module *owner; const char *name; /* Attempt to parse a key from the data blob passed to add_key() or * keyctl_instantiate(). Should also generate a proposed description * that the caller can optionally use for the key. * * Return EBADMSG if not recognised. */ int (*parse)(struct key_preparsed_payload *prep); }; extern int register_asymmetric_key_parser(struct asymmetric_key_parser *); extern void unregister_asymmetric_key_parser(struct asymmetric_key_parser *); #endif /* _KEYS_ASYMMETRIC_PARSER_H */