FreeRDP
base64.c File Reference
#include <freerdp/config.h>
#include <winpr/crt.h>
#include <freerdp/crypto/crypto.h>

Functions

static char * base64_encode_ex (const char *alphabet, const BYTE *data, size_t length, BOOL pad, BOOL crLf, size_t lineSize)
 
static char * base64_encode (const char *alphabet, const BYTE *data, size_t length, BOOL pad)
 
static int base64_decode_char (const char *alphabet, char c)
 
static void * base64_decode (const char *alphabet, const char *s, size_t length, size_t *data_len, BOOL pad)
 
char * crypto_base64_encode_ex (const BYTE *data, size_t length, BOOL withCrLf)
 
char * crypto_base64_encode (const BYTE *data, size_t length)
 
void crypto_base64_decode (const char *enc_data, size_t length, BYTE **dec_data, size_t *res_length)
 
char * crypto_base64url_encode (const BYTE *data, size_t length)
 
void crypto_base64url_decode (const char *enc_data, size_t length, BYTE **dec_data, size_t *res_length)
 

Variables

static const char base64 [] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
 
static const char base64url [] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"
 

Function Documentation

◆ base64_decode()

static void* base64_decode ( const char *  alphabet,
const char *  s,
size_t  length,
size_t *  data_len,
BOOL  pad 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ base64_decode_char()

static int base64_decode_char ( const char *  alphabet,
char  c 
)
static
Here is the caller graph for this function:

◆ base64_encode()

static char* base64_encode ( const char *  alphabet,
const BYTE data,
size_t  length,
BOOL  pad 
)
static
Here is the call graph for this function:
Here is the caller graph for this function:

◆ base64_encode_ex()

static char* base64_encode_ex ( const char *  alphabet,
const BYTE data,
size_t  length,
BOOL  pad,
BOOL  crLf,
size_t  lineSize 
)
static
Here is the caller graph for this function:

◆ crypto_base64_decode()

void crypto_base64_decode ( const char *  enc_data,
size_t  length,
BYTE **  dec_data,
size_t *  res_length 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ crypto_base64_encode()

char* crypto_base64_encode ( const BYTE data,
size_t  length 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ crypto_base64_encode_ex()

char* crypto_base64_encode_ex ( const BYTE data,
size_t  length,
BOOL  withCrLf 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ crypto_base64url_decode()

void crypto_base64url_decode ( const char *  enc_data,
size_t  length,
BYTE **  dec_data,
size_t *  res_length 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ crypto_base64url_encode()

char* crypto_base64url_encode ( const BYTE data,
size_t  length 
)
Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ base64

const char base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
static

FreeRDP: A Remote Desktop Protocol Implementation Base64 Encoding & Decoding

Copyright 2011-2012 Marc-Andre Moreau marca.nosp@m.ndre.nosp@m..more.nosp@m.au@g.nosp@m.mail..nosp@m.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

◆ base64url

const char base64url[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"
static