aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.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 /CHANGELOG.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 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8e6cb9c..9227510 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -40,6 +40,8 @@ SPDX-License-Identifier: MIT
- Require a mutable `Device` reference if a method changes the device state.
- Let `Admin` and `User` store a mutable reference to the `Device` instead of
the `Device` value.
+- Let `PasswordStore` store a mutable reference to the `Device` instead of a
+ non-mutable reference.
# v0.3.4 (2019-01-20)
- Fix authentication methods that assumed that `char` is signed.