41 lines
765 B
Markdown
41 lines
765 B
Markdown
# oss-backupd
|
|
|
|
Backup file or directory to OSS, can be encrypted.
|
|
|
|
|
|
Config read order:
|
|
1. from command line, `--config` or `-c`
|
|
1. from `./oss-backupd-config.json`
|
|
1. from `~/.oss-backupd-config.json`
|
|
1. from `/etc/oss-backupd/config.json`
|
|
|
|
|
|
<br>
|
|
|
|
Use direct signed URL or SDK?
|
|
|
|
OSS SDK in Rust:
|
|
* https://crates.io/crates/oss_rust_sdk
|
|
* https://github.com/NoXF/oss-rust-sdk
|
|
|
|
PGP in Rust:
|
|
* https://crates.io/crates/pgp
|
|
* https://crates.io/crates/openpgp
|
|
* https://github.com/rpgp/rpgp
|
|
* https://crates.io/crates/gpgrv
|
|
* https://crates.io/crates/sequoia-openpgp
|
|
|
|
**keys.openpgp.org** uses: Sequoia-PGP ( https://sequoia-pgp.org/ )
|
|
|
|
<br>
|
|
|
|
On Linux:
|
|
```
|
|
git clone https://git.lysator.liu.se/nettle/nettle
|
|
cd nettle
|
|
./.bootstrap
|
|
./configure
|
|
make
|
|
sudo make install
|
|
```
|