Skip to main content

ec_base64_encode_string_to_string

Last updated March 2020

Name

ec_base64_encode_string_to_string — Apply base64 encoding to an ec_string and store the result to another ec_string where the previous content will be replaced

Synopsis

#include "util.h"

| int **ec_base64_encode_string_to_string** ( | srcstring, |   | |   | deststring, |   | |   | fold); |   |

string * <var class="pdparam">srcstring</var>; string * <var class="pdparam">deststring</var>; int <var class="pdparam">fold</var>;

Description

Note

This reference page was automatically generated from functions found in the header files in the development branch. The function described here may not exist in generally available versions of Momentum, and may change in behavior when it is generally available. Consult your vendor for definitive advice on the use of this function.

Apply base64 encoding to an ec_string and store the result to another ec_string where the previous content will be replaced.

Parameters

srcstring

the ec_string to encode

deststring

the destination for the encoded result

fold

if true, the encoded line will be folded so each line will not exceed 76 chars.

Was this page helpful?