SM0 She11
Path:
/
/
usr
/
include
/
rpm
Full Path (server): /usr/include/rpm
Create Fil3
Upl04d Fil3
📄 argv.h
[E]
[D]
[R]
📄 header.h
[E]
[D]
[R]
📄 rpmbase64.h
[E]
[D]
[R]
📄 rpmbuild.h
[E]
[D]
[R]
📄 rpmcallback.h
[E]
[D]
[R]
📄 rpmcli.h
[E]
[D]
[R]
📄 rpmdb.h
[E]
[D]
[R]
📄 rpmds.h
[E]
[D]
[R]
📄 rpmfc.h
[E]
[D]
[R]
📄 rpmfi.h
[E]
[D]
[R]
📄 rpmfileutil.h
[E]
[D]
[R]
📄 rpmio.h
[E]
[D]
[R]
📄 rpmkeyring.h
[E]
[D]
[R]
📄 rpmlegacy.h
[E]
[D]
[R]
📄 rpmlib.h
[E]
[D]
[R]
📄 rpmlog.h
[E]
[D]
[R]
📄 rpmmacro.h
[E]
[D]
[R]
📄 rpmpgp.h
[E]
[D]
[R]
📄 rpmpol.h
[E]
[D]
[R]
📄 rpmprob.h
[E]
[D]
[R]
📄 rpmps.h
[E]
[D]
[R]
📄 rpmsign.h
[E]
[D]
[R]
📄 rpmspec.h
[E]
[D]
[R]
📄 rpmsq.h
[E]
[D]
[R]
📄 rpmstring.h
[E]
[D]
[R]
📄 rpmstrpool.h
[E]
[D]
[R]
📄 rpmsw.h
[E]
[D]
[R]
📄 rpmtag.h
[E]
[D]
[R]
📄 rpmtd.h
[E]
[D]
[R]
📄 rpmte.h
[E]
[D]
[R]
📄 rpmts.h
[E]
[D]
[R]
📄 rpmtypes.h
[E]
[D]
[R]
📄 rpmurl.h
[E]
[D]
[R]
📄 rpmutil.h
[E]
[D]
[R]
📄 rpmvf.h
[E]
[D]
[R]
Editing: rpmbase64.h
/* base64 encoder/decoder based on public domain implementation * by Chris Venter */ #include <sys/types.h> #ifdef __cplusplus extern "C" { #endif /* returns malloced base64 encoded string * lines are split with \n characters to be nearest lower multiple of linelen * if linelen/4 == 0 lines are not split * if linelen < 0 default line length (64) is used * the returned string is empty when len == 0 * returns NULL on failures */ char *rpmBase64Encode(const void *data, size_t len, int linelen); /* decodes from zero terminated base64 encoded string to a newly malloced buffer * ignores whitespace characters in the input string * return values: * 0 - OK * 1 - input is NULL * 2 - invalid length * 3 - invalid characters on input * 4 - malloc failed */ int rpmBase64Decode(const char *in, void **out, size_t *outlen); /* counts CRC24 and base64 encodes it in a malloced string * returns NULL on failures */ char *rpmBase64CRC(const unsigned char *data, size_t len); #ifdef __cplusplus } #endif
Save