-
Notifications
You must be signed in to change notification settings - Fork 947
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove move semantics from Authentication
move semantics with a std::string introduce difficulty with secure erasing because we have no guarantee that the moved-from object doesn't still have the the credentials (because of small string optimization). This removes the move ctor and assignment so that we always get secure erasing on destruction without any weird SSO cases to worry about.
- Loading branch information
Showing
2 changed files
with
0 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters