1 /* Get public or secret key from key server.
2 Copyright (C) 1996-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
20 #include <rpc/netdb.h>
21 #include <rpc/auth_des.h>
22 #include <shlib-compat.h>
27 /* Type of the lookup function for the public key. */
28 typedef int (*public_function
) (const char *, char *, int *);
30 /* Type of the lookup function for the secret key. */
31 typedef int (*secret_function
) (const char *, char *, const char *, int *);
34 getpublickey (const char *name
, char *key
)
42 enum nss_status status
= NSS_STATUS_UNAVAIL
;
45 no_more
= __nss_publickey_lookup2 (&nip
, "getpublickey", NULL
, &fct
.ptr
);
49 status
= (*fct
.f
) (name
, key
, &errno
);
51 no_more
= __nss_next2 (&nip
, "getpublickey", NULL
, &fct
.ptr
, status
, 0);
54 return status
== NSS_STATUS_SUCCESS
;
56 libc_hidden_nolink_sunrpc (getpublickey
, GLIBC_2_0
)
60 getsecretkey (const char *name
, char *key
, const char *passwd
)
68 enum nss_status status
= NSS_STATUS_UNAVAIL
;
71 no_more
= __nss_publickey_lookup2 (&nip
, "getsecretkey", NULL
, &fct
.ptr
);
75 status
= (*fct
.f
) (name
, key
, passwd
, &errno
);
77 no_more
= __nss_next2 (&nip
, "getsecretkey", NULL
, &fct
.ptr
, status
, 0);
80 return status
== NSS_STATUS_SUCCESS
;
82 libc_hidden_nolink_sunrpc (getsecretkey
, GLIBC_2_0
)