1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
package proton
// Block is a block of file contents. They are split in 4MB blocks although this number may change in the future.
// Each block is its own data packet separated from the key packet which is held by the node,
// which means the sessionKey is the same for every block.
type Block struct {
Index int
BareURL string // URL to the block
Token string // Token for download URL
Hash string // Encrypted block's sha256 hash, in base64
EncSignature string // Encrypted signature of the block
SignatureEmail string // Email used to sign the block
}
type BlockUploadReq struct {
AddressID string
ShareID string
LinkID string
RevisionID string
BlockList []BlockUploadInfo
}
type BlockUploadInfo struct {
Index int
Size int64
EncSignature string
Hash string
}
type BlockUploadLink struct {
Token string
BareURL string
}
|