X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=doc%2Fsilcalgs.conf;fp=doc%2Fsilcalgs.conf;h=0000000000000000000000000000000000000000;hb=72c2de619079457f7a68100eb13385275a424a23;hp=928e1316a768137a7c35c5082dab459ab6d2f796;hpb=e7b6c157b80152bf9fb9266e6bdd93f9fb0db776;p=runtime.git diff --git a/doc/silcalgs.conf b/doc/silcalgs.conf deleted file mode 100644 index 928e1316..00000000 --- a/doc/silcalgs.conf +++ /dev/null @@ -1,121 +0,0 @@ -# -# Algorithms -# -# This file defines ciphers, hash functions, HMACs and PKCS algorithms that -# can be used. This file can be included into different configuration files. -# -# You should not change the contents of this file unless you know what you -# are doing. -# -# The first algorithm defined is always the default one to use. -# - -# -# Configured ciphers -# -# The "name" is unique name to the cipher. The "module" option can be either -# absolute or relative to the "module_path", and it defines where the cipher -# module is found. If omitted the built-in cipher is used. The "keylength" -# defines the length of the key (bytes), and the "blocklength" defines the -# block size of the cipher (bytes). -# -cipher { - name = "aes-256-cbc"; - module = "aes.sim.so"; - keylength = 32; - blocklength = 16; -}; -cipher { - name = "aes-192-cbc"; - module = "aes.sim.so"; - keylength = 24; - blocklength = 16; -}; -cipher { - name = "aes-128-cbc"; - module = "aes.sim.so"; - keylength = 16; - blocklength = 16; -}; -cipher { - name = "twofish-256-cbc"; - module = "twofish.sim.so"; - keylength = 32; - blocklength = 16; -}; -cipher { - name = "twofish-192-cbc"; - module = "twofish.sim.so"; - keylength = 24; - blocklength = 16; -}; -cipher { - name = "twofish-128-cbc"; - module = "twofish.sim.so"; - keylength = 16; - blocklength = 16; -}; - -# "none" cipher should not be used -#cipher { -# name = "none"; -# module = "none.sim.so"; -# keylength = 0; -# blocklength = 0; -#}; - -# -# Configured hash functions -# -hash { - name = "sha256"; - blocklength = 64; - digestlength = 32; -}; -hash { - name = "sha1"; - blocklength = 64; - digestlength = 20; -}; -hash { - name = "md5"; - blocklength = 64; - digestlength = 16; -}; - -# -# Configured HMAC functions. The hash function used in the HMAC must -# be configured in the hash section. -# -hmac { - name = "hmac-sha256-96"; - hash = "sha256"; - maclength = 12; -}; -hmac { - name = "hmac-sha1-96"; - hash = "sha1"; - maclength = 12; -}; -hmac { - name = "hmac-md5-96"; - hash = "md5"; - maclength = 12; -}; -hmac { - name = "hmac-sha1"; - hash = "sha1"; - maclength = 20; -}; -hmac { - name = "hmac-md5"; - hash = "md5"; - maclength = 16; -}; - -# -# Configured PKCS -# -PKCS { - name = "rsa"; -};