libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SecretFile.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/dso_export.h>
5#include <cosmos/fs/FileBase.hxx>
6
7namespace cosmos {
8
10
16class COSMOS_API SecretFile :
17 public FileBase {
18public: // functions
19
20 SecretFile() = default;
21
23 explicit SecretFile(const CloseOnExec cloexec) {
24 create(cloexec);
25 }
26
28
33 void create(const CloseOnExec cloexec = CloseOnExec{true});
34};
35
36} // end ns
Base class for File types with ownership of a FileDescriptor.
Definition FileBase.hxx:23
Strong template type to wrap boolean values in a named type.
Definition utils.hxx:50
Memory based files suitable for storing of sensitive secret data.
SecretFile(const CloseOnExec cloexec)