greenplumn base64 源码

  • 2022-08-18
  • 浏览 (302)

greenplumn base64 代码

文件路径:/src/include/common/base64.h

/*
 * base64.h
 *	  Encoding and decoding routines for base64 without whitespace
 *	  support.
 *
 * Portions Copyright (c) 2001-2019, PostgreSQL Global Development Group
 *
 * src/include/common/base64.h
 */
#ifndef BASE64_H
#define BASE64_H

/* base 64 */
extern int	pg_b64_encode(const char *src, int len, char *dst);
extern int	pg_b64_decode(const char *src, int len, char *dst);
extern int	pg_b64_enc_len(int srclen);
extern int	pg_b64_dec_len(int srclen);

#endif							/* BASE64_H */

相关信息

greenplumn 源码目录

相关文章

greenplumn config_info 源码

greenplumn controldata_utils 源码

greenplumn fe_memutils 源码

greenplumn file_perm 源码

greenplumn file_utils 源码

greenplumn hashfn 源码

greenplumn int 源码

greenplumn int128 源码

greenplumn ip 源码

greenplumn keywords 源码

0  赞