Crypt + chunker , should we encrypt or chunker first?

I want to use both crypt and chunker, which is the best config:

[local]
type = local

[crypt]
type = crypt
remote = local:
...

[chunker]
type = chunker
remote = crypt:
...
[local]
type = local:

[chunker]
type = chunker
remote = local:
...

[crypt]
type = crypt
remote = chunker:
...

Both will work but the first one is better IMO as all files' names will be fully encrypted when the second one will reveal that you use chunker. So the first one leaks less info.

Try both and you will see difference:)

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.