Merge "PublicKeyVerify's verify() will return void, instead of boolean."
ORIGINAL_AUTHOR=Quan Nguyen <quannguyen@google.com>

GitOrigin-RevId: 26d74f3acb9d38a1ca95c1515661da542c73698d
8 files changed
tree: f9b73113181dc61a536fe2c5d35e50d7e6531ed0
  1. cc/
  2. examples/
  3. java/
  4. proto/
  5. tools/
  6. .gitignore
  7. BUILD
  8. CONTRIBUTING.md
  9. LICENSE
  10. README.md
  11. WORKSPACE
README.md

Cloud Crypto SDK

An open-source SDK that provides cloud customers with cryptographic functionalities needed to extend key management offering of Cloud KMS.

In particular, Cloud KMS needs support for “Envelope Encryption”, i.e., a client-side encryption of data with user-generated keys protected by KMS encryption: cloud user generates a data encryption key (DEK) locally, encrypts data with DEK, sends DEK to Storky to be encrypted (with a key managed by Storky), and stores encrypted DEK with encrypted data; at a later point user can retrieve encrypted data and DEK, use Storky to decrypt DEK, and use decrypted DEK to decrypt the data. A guiding principles for the design of the SDK are security, simplicity, and resistance to user errors.