FreeRDP
|
Functions | |
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 (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-_" |
|
static |
|
static |
|
static |
void crypto_base64_decode | ( | const char * | enc_data, |
size_t | length, | ||
BYTE ** | dec_data, | ||
size_t * | res_length | ||
) |
char* crypto_base64_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 | ||
) |
char* crypto_base64url_encode | ( | const BYTE * | data, |
size_t | length | ||
) |
|
static |
FreeRDP: A Remote Desktop Protocol Implementation Base64 Encoding & Decoding
Copyright 2011-2012 Marc-Andre Moreau marca ndre .more au@g mail. 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.
|
static |