summaryrefslogtreecommitdiffstats
path: root/sys/miscfs/tcfs/tcfs_cipher_conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/miscfs/tcfs/tcfs_cipher_conf.c')
-rw-r--r--sys/miscfs/tcfs/tcfs_cipher_conf.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/sys/miscfs/tcfs/tcfs_cipher_conf.c b/sys/miscfs/tcfs/tcfs_cipher_conf.c
new file mode 100644
index 00000000000..bd86f8b2c00
--- /dev/null
+++ b/sys/miscfs/tcfs/tcfs_cipher_conf.c
@@ -0,0 +1,21 @@
+#include "tcfs_cipher.h"
+
+struct tcfs_cipher tcfs_cipher_vect[]={
+ {"3des",0,TDES_KEYSIZE,TDES_init_key,TDES_cleanup_key,
+ TDES_encrypt,TDES_decrypt},
+ {"none",0,0,cnone_init_key,cnone_cleanup_key,
+ cnone_encrypt,cnone_decrypt},
+ {"bfish",0,BLOWFISH_KEYSIZE,BLOWFISH_init_key,BLOWFISH_cleanup_key,
+ BLOWFISH_encrypt,BLOWFISH_decrypt},
+ {"none",0,0,cnone_init_key,cnone_cleanup_key,
+ cnone_encrypt,cnone_decrypt},
+ {"none",0,0,cnone_init_key,cnone_cleanup_key,
+ cnone_encrypt,cnone_decrypt},
+ {"none",0,0,cnone_init_key,cnone_cleanup_key,
+ cnone_encrypt,cnone_decrypt},
+ {"none",0,0,cnone_init_key,cnone_cleanup_key,
+ cnone_encrypt,cnone_decrypt},
+ {"none",0,0,cnone_init_key,cnone_cleanup_key,
+ cnone_encrypt,cnone_decrypt},
+};
+