Represents text that should be kept confidential, such as by deleting it from computer memory when no longer needed. This class cannot be inherited.
Public Constructors | |
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. | |
Public Properties | |
intptr | data () const noexcept |
Gets underlying encrypted data. | |
size_t | size () const noexcept |
Gets underlying encrypted data size. | |
Public Methods | |
std::string | to_unsecure_string () const noexcept |
Gets decrypted data. | |
Additional Inherited Members | |
Public Member Functions inherited from xtd::object | |
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. | |
virtual type_object | get_type () const noexcept |
Gets the type of the current instance. | |
template<typename object_t > | |
xtd::uptr< object_t > | memberwise_clone () const |
Creates a shallow copy of the current object. | |
virtual xtd::string | to_string () const noexcept |
Returns a xtd::string that represents the current object. | |
Static Public Member Functions inherited from xtd::object | |
template<typename object_a_t , typename object_b_t > | |
static bool | equals (const object_a_t &object_a, const object_b_t &object_b) noexcept |
Determines whether the specified object instances are considered equal. | |
template<typename object_a_t , typename object_b_t > | |
static bool | reference_equals (const object_a_t &object_a, const object_b_t &object_b) noexcept |
Determines whether the specified object instances are the same instance. | |
|
default |
Initializes a new instance of the xtd::security::secure_string class.
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.
value | A pointer to an array of char. |
length | The number of elements of value to include in the new instance. |
|
noexcept |
Gets underlying encrypted data.
|
noexcept |
Gets underlying encrypted data size.
|
noexcept |
Gets decrypted data.
A encrypted byte array.