Documentation ¶
Index ¶
- func DecryptAfterBucket(path storj.Path, cipher storj.Cipher, key *storj.Key) (decrypted storj.Path, err error)
- func DecryptStreamInfo(ctx context.Context, streamMetaBytes []byte, path storj.Path, ...) (streamInfo []byte, streamMeta pb.StreamMeta, err error)
- func EncryptAfterBucket(path storj.Path, cipher storj.Cipher, key *storj.Key) (encrypted storj.Path, err error)
- type EOFReader
- type ListItem
- type Meta
- type SizeReader
- type Store
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DecryptAfterBucket ¶
func DecryptAfterBucket(path storj.Path, cipher storj.Cipher, key *storj.Key) (decrypted storj.Path, err error)
DecryptAfterBucket decrypts a path without modifying its first element
Types ¶
type EOFReader ¶
type EOFReader struct {
// contains filtered or unexported fields
}
EOFReader holds reader and status of EOF
func NewEOFReader ¶
NewEOFReader keeps track of the state, has the internal reader reached EOF
type SizeReader ¶
type SizeReader struct {
// contains filtered or unexported fields
}
SizeReader holds reader and size read so far
func NewSizeReader ¶
func NewSizeReader(r io.Reader) *SizeReader
NewSizeReader keeps track of how much bytes are read from the reader
func (*SizeReader) Size ¶
func (r *SizeReader) Size() int64
Size returns the number of bytes read so far
type Store ¶
type Store interface { Meta(ctx context.Context, path storj.Path, pathCipher storj.Cipher) (Meta, error) Get(ctx context.Context, path storj.Path, pathCipher storj.Cipher) (ranger.Ranger, Meta, error) Put(ctx context.Context, path storj.Path, pathCipher storj.Cipher, data io.Reader, metadata []byte, expiration time.Time) (Meta, error) Delete(ctx context.Context, path storj.Path, pathCipher storj.Cipher) error List(ctx context.Context, prefix, startAfter, endBefore storj.Path, pathCipher storj.Cipher, recursive bool, limit int, metaFlags uint32) (items []ListItem, more bool, err error) }
Store interface methods for streams to satisfy to be a store
Click to show internal directories.
Click to hide internal directories.