Constructs an object of type T in secure memory and returns owning pointer.
Declared in <support/allocators/secure.h>
template<
typename T,
typename... Args>
secure_unique_ptr<T>
make_secure_unique(Args&&... as);
A secure_unique_ptr owning the newly constructed object.
| Name | Description |
|---|---|
| as | Arguments forwarded to the constructor of T. |