Encfs中的加密函数是什么?

Encfs中的加密函数是什么?

在我读了一篇关于 Encfs 的论文后,我发现 Encfs 中有一个加密层。所以我试图找到确切的加密函数。但我没找到,因为有很多功能。有人有什么想法或建议吗?

答案1

根据文档,使用的加密密码取决于配置,据我了解,可以是底层加密库支持的任何(对称)密码:

Cipher
  Which encryption algorithm to use.  The list is generated automatically based on
  what supported algorithms EncFS found in the encryption libraries.  When using a
  recent version of OpenSSL, Blowfish and AES are the typical options.

  Blowfish is an 8 byte cipher - encoding 8 bytes at a time.  AES is a 16 byte
  cipher.

相关内容