aboutsummaryrefslogtreecommitdiff
path: root/TODO.md
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2019-01-30 18:40:11 +0000
committerRobin Krahl <robin.krahl@ireas.org>2019-02-02 11:25:37 +0100
commit13006c00dcbd570cf8347d89557834e320427377 (patch)
tree6d51c0223778d4957ef1660f845fe5bd404d8538 /TODO.md
parent0972bbe82623c3d9649b6023d8f50d304aa0cde6 (diff)
downloadnitrokey-rs-13006c00dcbd570cf8347d89557834e320427377.tar.gz
nitrokey-rs-13006c00dcbd570cf8347d89557834e320427377.tar.bz2
Store mutable reference to Device in PasswordSafe
The current implementation of PasswordSafe stored a normal reference to the Device. This patch changes the PasswordSafe struct to use a mutable reference instead. This allows the borrow checker to make sure that there is only one PasswordSafe instance at a time. While this is currently not needed, it will become important once we can lock the PWS on the Nitrokey when dropping the PasswordSafe instance.
Diffstat (limited to 'TODO.md')
-rw-r--r--TODO.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/TODO.md b/TODO.md
index 1ff723d..d6a3509 100644
--- a/TODO.md
+++ b/TODO.md
@@ -13,7 +13,6 @@ SPDX-License-Identifier: MIT
- Clear passwords from memory.
- Lock password safe in `PasswordSafe::drop()` (see [nitrokey-storage-firmware
issue 65][]).
-- Disable creation of multiple password safes at the same time.
- Check timing in Storage tests.
- Consider restructuring `device::StorageStatus`.