Version v1.72.0
This commit is contained in:
+45
-37
@@ -448,14 +448,14 @@ Properties:
|
||||
- Type: string
|
||||
- Default: "standard"
|
||||
- Examples:
|
||||
- "standard"
|
||||
- Encrypt the filenames.
|
||||
- See the docs for the details.
|
||||
- "obfuscate"
|
||||
- Very simple filename obfuscation.
|
||||
- "off"
|
||||
- Don't encrypt the file names.
|
||||
- Adds a ".bin", or "suffix" extension only.
|
||||
- "standard"
|
||||
- Encrypt the filenames.
|
||||
- See the docs for the details.
|
||||
- "obfuscate"
|
||||
- Very simple filename obfuscation.
|
||||
- "off"
|
||||
- Don't encrypt the file names.
|
||||
- Adds a ".bin", or "suffix" extension only.
|
||||
|
||||
#### --crypt-directory-name-encryption
|
||||
|
||||
@@ -470,10 +470,10 @@ Properties:
|
||||
- Type: bool
|
||||
- Default: true
|
||||
- Examples:
|
||||
- "true"
|
||||
- Encrypt directory names.
|
||||
- "false"
|
||||
- Don't encrypt directory names, leave them intact.
|
||||
- "true"
|
||||
- Encrypt directory names.
|
||||
- "false"
|
||||
- Don't encrypt directory names, leave them intact.
|
||||
|
||||
#### --crypt-password
|
||||
|
||||
@@ -560,10 +560,10 @@ Properties:
|
||||
- Type: bool
|
||||
- Default: false
|
||||
- Examples:
|
||||
- "true"
|
||||
- Don't encrypt file data, leave it unencrypted.
|
||||
- "false"
|
||||
- Encrypt file data.
|
||||
- "true"
|
||||
- Don't encrypt file data, leave it unencrypted.
|
||||
- "false"
|
||||
- Encrypt file data.
|
||||
|
||||
#### --crypt-pass-bad-blocks
|
||||
|
||||
@@ -611,13 +611,13 @@ Properties:
|
||||
- Type: string
|
||||
- Default: "base32"
|
||||
- Examples:
|
||||
- "base32"
|
||||
- Encode using base32. Suitable for all remote.
|
||||
- "base64"
|
||||
- Encode using base64. Suitable for case sensitive remote.
|
||||
- "base32768"
|
||||
- Encode using base32768. Suitable if your remote counts UTF-16 or
|
||||
- Unicode codepoint instead of UTF-8 byte length. (Eg. Onedrive, Dropbox)
|
||||
- "base32"
|
||||
- Encode using base32. Suitable for all remote.
|
||||
- "base64"
|
||||
- Encode using base64. Suitable for case sensitive remote.
|
||||
- "base32768"
|
||||
- Encode using base32768. Suitable if your remote counts UTF-16 or
|
||||
- Unicode codepoint instead of UTF-8 byte length. (Eg. Onedrive, Dropbox)
|
||||
|
||||
#### --crypt-suffix
|
||||
|
||||
@@ -654,9 +654,11 @@ See the [metadata](/docs/#metadata) docs for more info.
|
||||
|
||||
Here are the commands specific to the crypt backend.
|
||||
|
||||
Run them with
|
||||
Run them with:
|
||||
|
||||
rclone backend COMMAND remote:
|
||||
```console
|
||||
rclone backend COMMAND remote:
|
||||
```
|
||||
|
||||
The help below will explain what arguments each command takes.
|
||||
|
||||
@@ -668,34 +670,40 @@ These can be run on a running backend using the rc command
|
||||
|
||||
### encode
|
||||
|
||||
Encode the given filename(s)
|
||||
Encode the given filename(s).
|
||||
|
||||
rclone backend encode remote: [options] [<arguments>+]
|
||||
```console
|
||||
rclone backend encode remote: [options] [<arguments>+]
|
||||
```
|
||||
|
||||
This encodes the filenames given as arguments returning a list of
|
||||
strings of the encoded results.
|
||||
|
||||
Usage Example:
|
||||
|
||||
rclone backend encode crypt: file1 [file2...]
|
||||
rclone rc backend/command command=encode fs=crypt: file1 [file2...]
|
||||
Usage examples:
|
||||
|
||||
```console
|
||||
rclone backend encode crypt: file1 [file2...]
|
||||
rclone rc backend/command command=encode fs=crypt: file1 [file2...]
|
||||
```
|
||||
|
||||
### decode
|
||||
|
||||
Decode the given filename(s)
|
||||
Decode the given filename(s).
|
||||
|
||||
rclone backend decode remote: [options] [<arguments>+]
|
||||
```console
|
||||
rclone backend decode remote: [options] [<arguments>+]
|
||||
```
|
||||
|
||||
This decodes the filenames given as arguments returning a list of
|
||||
strings of the decoded results. It will return an error if any of the
|
||||
inputs are invalid.
|
||||
|
||||
Usage Example:
|
||||
|
||||
rclone backend decode crypt: encryptedfile1 [encryptedfile2...]
|
||||
rclone rc backend/command command=decode fs=crypt: encryptedfile1 [encryptedfile2...]
|
||||
Usage examples:
|
||||
|
||||
```console
|
||||
rclone backend decode crypt: encryptedfile1 [encryptedfile2...]
|
||||
rclone rc backend/command command=decode fs=crypt: encryptedfile1 [encryptedfile2...]
|
||||
```
|
||||
|
||||
<!-- autogenerated options stop -->
|
||||
|
||||
|
||||
Reference in New Issue
Block a user