Version v1.63.0

This commit is contained in:
Nick Craig-Wood
2023-06-30 14:11:17 +01:00
parent 42c211c6b2
commit e90537b2e9
47 changed files with 11353 additions and 4695 deletions

View File

@@ -13,16 +13,16 @@ Cryptcheck checks the integrity of an encrypted remote.
## Synopsis
rclone cryptcheck checks a remote against an [encrypted](/crypt/) remote.
rclone cryptcheck checks a remote against a [crypted](/crypt/) remote.
This is the equivalent of running rclone [check](/commands/rclone_check/),
but able to check the checksums of the encrypted remote.
For it to work the underlying remote of the encryptedremote must support
For it to work the underlying remote of the cryptedremote must support
some kind of checksum.
It works by reading the nonce from each file on the encryptedremote: and
It works by reading the nonce from each file on the cryptedremote: and
using that to encrypt each file on the remote:. It then checks the
checksum of the underlying file on the ercryptedremote: against the
checksum of the underlying file on the cryptedremote: against the
checksum of the file it has just encrypted.
Use it like this
@@ -57,11 +57,12 @@ you what happened to it. These are reminiscent of diff files.
- `* path` means path was present in source and destination but different.
- `! path` means there was an error reading or hashing the source or dest.
The default number of parallel checks is N=8. See the [--checkers=N](/docs/#checkers-n) option
for more information.
The default number of parallel checks is 8. See the [--checkers=N](/docs/#checkers-n)
option for more information.
```
rclone cryptcheck remote:path encryptedremote:path [flags]
rclone cryptcheck remote:path cryptedremote:path [flags]
```
## Options