Functions | |
void | string_burn (STRING *s) |
destroy data in a string so it couldn't appear in a core dump | |
void | string_free (STRING *s) |
deallocate a STRING object | |
STRING * | string_from_char (const char *what) |
Creates a ssh stream using a C string. | |
int | string_len (STRING *str) |
returns the size of a SSH string | |
STRING * | string_new (unsigned int size) |
Creates a new SSH String object. | |
char * | string_to_char (STRING *str) |
convert a SSH string to a C nul-terminated string |
void string_burn | ( | STRING * | s | ) |
destroy data in a string so it couldn't appear in a core dump
s | string to burn |
void string_free | ( | STRING * | s | ) |
deallocate a STRING object
s | String to delete |
STRING* string_from_char | ( | const char * | what | ) |
Creates a ssh stream using a C string.
what | source 0-terminated C string |
int string_len | ( | STRING * | str | ) |
returns the size of a SSH string
str | the input SSH string |
STRING* string_new | ( | unsigned int | size | ) |
Creates a new SSH String object.
size | size of the string |
char* string_to_char | ( | STRING * | str | ) |
convert a SSH string to a C nul-terminated string
str | the input SSH string |