diff options
author | Daniel Mueller <deso@posteo.net> | 2019-01-12 13:24:21 -0800 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2019-01-12 13:24:21 -0800 |
commit | 541819637e0bec0b58b32ed0721d51610a8a7d3b (patch) | |
tree | f0d7d270a4eaca1025709d02a508ef638fb076cf /nitrokey/README.md | |
parent | 16ed68c0f5e3ccb330c7a5f7c11781bc7a129b03 (diff) | |
download | nitrocli-541819637e0bec0b58b32ed0721d51610a8a7d3b.tar.gz nitrocli-541819637e0bec0b58b32ed0721d51610a8a7d3b.tar.bz2 |
Update nitrokey crate to 0.3.2
This change updates the nitrokey crate to version 0.3.2.
Import subrepo nitrokey/:nitrokey at 6ea73f29daa5db0215663a0a38334b764863671d
Diffstat (limited to 'nitrokey/README.md')
-rw-r--r-- | nitrokey/README.md | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/nitrokey/README.md b/nitrokey/README.md index 53054de..567ae58 100644 --- a/nitrokey/README.md +++ b/nitrokey/README.md @@ -21,13 +21,21 @@ available but still under development. The following functions provided by `libnitrokey` are deliberately not supported by `nitrokey-rs`: -- `NK_get_time()`. This method is useless as it will always cause a timestamp +- `NK_get_device_model`. We know which model we connected to, so we can + provide this information without calling `libnitrokey`. +- `NK_get_time`. This method is useless as it will always cause a timestamp error on the device (see [pull request #114][] for `libnitrokey` for details). -- `NK_get_status()`. This method only provides a string representation of +- `NK_get_status`. This method only provides a string representation of data that can be accessed by other methods (firmware version, serial number, configuration). -- `NK_get_status_storage_as_string()`. This method only provides an incomplete +- `NK_get_status_storage_as_string`. This method only provides an incomplete string representation of the data returned by `NK_get_status_storage`. +- `NK_set_unencrypted_volume_rorw_pin_type_user`, + `NK_set_unencrypted_read_only`, `NK_set_unencrypted_read_write`, + `NK_set_encrypted_read_only` and `NK_set_encrypted_read_write`. These + methods are only relevant for older firmware versions (pre-v0.51). As the + Nitrokey Storage firmware can be updated easily, we do not support these + outdated versions. ## Tests |