#include <secure_string.h>
Represents text that should be kept confidential, such as by deleting it from computer memory when no longer needed. This class cannot be inherited.
- Namespace
- xtd::security
- Library
- xtd.core
Inherits xtd::object.
|
| secure_string ()=default |
| Initializes a new instance of the xtd::security::secure_string class.
|
|
| secure_string (const char value[], size_t length) |
| This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the xtd::security::secure_string class from a subarray of System.Char objects.
|
|
intptr_t | data () const noexcept |
| Gets underlying encrypted data.
|
|
size_t | size () const noexcept |
| Gets underlying encrypted data size.
|
|
std::string | to_unsecure_string () const noexcept |
| Gets decrypted data.
|
|
| object ()=default |
| Create a new instance of the ultimate base class object.
|
|
virtual bool | equals (const object &obj) const noexcept |
| Determines whether the specified object is equal to the current object.
|
|
virtual size_t | get_hash_code () const noexcept |
| Serves as a hash function for a particular type.
|
|
template<typename object_t > |
std::unique_ptr< object_t > | memberwise_clone () const |
| Gets the type of the current instance.
|
|
virtual xtd::ustring | to_string () const noexcept |
| Returns a std::string that represents the current object.
|
|
|
static bool | equals (const object &object_a, const object &object_b) noexcept |
| Determines whether the specified object instances are considered equal.
|
|
static bool | reference_equals (const object &object_a, const object &object_b) noexcept |
| Determines whether the specified object instances are the same instance.
|
|
◆ secure_string() [1/2]
xtd::security::secure_string::secure_string |
( |
| ) |
|
|
default |
◆ secure_string() [2/2]
xtd::security::secure_string::secure_string |
( |
const char |
value[], |
|
|
size_t |
length |
|
) |
| |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the xtd::security::secure_string class from a subarray of System.Char objects.
- Parameters
-
value | A pointer to an array of char. |
length | The number of elements of value to include in the new instance. |
◆ data()
intptr_t xtd::security::secure_string::data |
( |
| ) |
const |
|
noexcept |
Gets underlying encrypted data.
- Returns
- The underlying encrypted data.
◆ size()
size_t xtd::security::secure_string::size |
( |
| ) |
const |
|
noexcept |
Gets underlying encrypted data size.
- Returns
- The underlying encrypted data size.
◆ to_unsecure_string()
std::string xtd::security::secure_string::to_unsecure_string |
( |
| ) |
const |
|
noexcept |
The documentation for this class was generated from the following file: