Module
Module documentation.
moduleencoding.base64
Classes
Classes and inheritance.
Functions
Free functions and class methods.
functionencoding.base64::encode_to_string
Signature
func encode_to_string(s: String) -> Stringfunc encode_to_string(s: String) -> String {
return encoding.encode_to_string(s);
}@briefEncodes input data with `encode_to_string`.
@detailsExecutes the `encode_to_string` system-library API. The documented parameters define the accepted inputs, ownership requirements, range limits, and timeout behavior for this call. Callers must check returned `ErrCode` values or boolean status values before using the result.
@param
- sInput string.
@returnReturns the operation result as `String`.
functionencoding.base64::decode_string
Signature
func decode_string(s: String) -> Stringfunc decode_string(s: String) -> String {
return encoding.decode_string(s);
}@briefDecodes input data with `decode_string`.
@detailsExecutes the `decode_string` system-library API. The documented parameters define the accepted inputs, ownership requirements, range limits, and timeout behavior for this call. Callers must check returned `ErrCode` values or boolean status values before using the result.
@param
- sInput string.
@returnReturns the operation result as `String`.
Variables
Class fields (var).