mirror of
https://github.com/rclone/rclone.git
synced 2024-12-03 13:55:34 +01:00
28 lines
688 B
Protocol Buffer
28 lines
688 B
Protocol Buffer
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
syntax = "proto3";
|
|
|
|
option go_package = "storj.io/common/pb";
|
|
|
|
package encryption_access;
|
|
|
|
import "encryption.proto";
|
|
|
|
message EncryptionAccess {
|
|
message StoreEntry {
|
|
bytes bucket = 1;
|
|
bytes unencrypted_path = 2;
|
|
bytes encrypted_path = 3;
|
|
bytes key = 4;
|
|
|
|
encryption.CipherSuite path_cipher = 5;
|
|
encryption.EncryptionParameters encryption_parameters = 6;
|
|
}
|
|
|
|
bytes default_key = 1;
|
|
repeated StoreEntry store_entries = 2;
|
|
encryption.CipherSuite default_path_cipher = 3;
|
|
encryption.EncryptionParameters default_encryption_parameters = 4;
|
|
}
|