/* Copyright (C) 2010-2021 Greenbone Networks GmbH * * SPDX-License-Identifier: GPL-2.0-or-later * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ /** * @file * @brief Credential pairs and triples. */ #include "credentials.h" #include "strings.h" /* for gvm_append_text */ #include #undef G_LOG_DOMAIN /** * @brief GLib log domain. */ #define G_LOG_DOMAIN "libgvm base" /** * @brief Free credentials. * * Free the members of a credentials pair. * * @param[in] credentials Pointer to the credentials. */ void free_credentials (credentials_t *credentials) { g_free (credentials->username); g_free (credentials->password); g_free (credentials->uuid); g_free (credentials->timezone); g_free (credentials->role); g_free (credentials->severity_class); memset (credentials, '\0', sizeof (*credentials)); } /** * @brief Append text to the username of a credential pair. * * @param[in] credentials Credentials. * @param[in] text The text to append. * @param[in] length Length of the text. */ void append_to_credentials_username (credentials_t *credentials, const char *text, gsize length) { gvm_append_text (&credentials->username, text, length); } /** * @brief Append text to the password of a credential pair. * * @param[in] credentials Credentials. * @param[in] text The text to append. * @param[in] length Length of the text. */ void append_to_credentials_password (credentials_t *credentials, const char *text, gsize length) { gvm_append_text (&credentials->password, text, length); }