1a65e42d33
* rename EncryptionCtx back to EncryptionAccess Change-Id: I5e58915a59979ad6f2e83d36e191b2bbf3ba2ba2 * missed some stuff Change-Id: Ib65fb186d7f854c0406e5fd7d11498e8941da59e * oops protolock Change-Id: I85a5ab4bafb9dd6a804d3dcd17a70811702f07e4 * retrigger Change-Id: I2d0e3f02b4dbae0299b090e9617662b4437980b0
23 lines
427 B
Protocol Buffer
23 lines
427 B
Protocol Buffer
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
syntax = "proto3";
|
|
|
|
option go_package = "pb";
|
|
|
|
package encryption_access;
|
|
|
|
import "gogo.proto";
|
|
|
|
message EncryptionAccess {
|
|
message StoreEntry {
|
|
bytes bucket = 1;
|
|
bytes unencrypted_path = 2;
|
|
bytes encrypted_path = 3;
|
|
bytes key = 4;
|
|
}
|
|
|
|
bytes default_key = 1;
|
|
repeated StoreEntry store_entries = 2;
|
|
}
|