Hacker News new | ask | show | jobs
by chakerb 1645 days ago
Cloudstore[1] can do something similar automatically.

[1] https://github.com/infor-cloud/cloud-store

1 comments

Just skimmed it, looks useful, with mentioning keypair I'm assuming they use RSA keys or something similar. Why the choice for asymmetric encryption?
The code says it uses the public key for uploading/encryption, and the private key for downloading/decryption. It's useful to be able to split writing and reading with cryptographic guarantees, for security or organisational purposes. E.g. if a client only has the public key and should it be compromised, it can't read the data. Or it allows you to have less strict access controls on uploading clients.