Lines Matching full:algorithm
11 Each cryptographic algorithm is supported via a set of dedicated functions.
27 need to use a particular cryptographic algorithm(s) in kernel code. For
29 developers working on the crypto algorithm implementations themselves.
33 appropriate algorithm, you should refer to external sources which cover that
41 - ``lib/crypto/*.c``: the crypto algorithm implementations
46 loadable module (when the algorithm is set to 'm' in the kconfig).
53 Generally, there is one kernel module per algorithm. Sometimes related
57 Each algorithm module is controlled by a tristate kconfig symbol
58 ``CRYPTO_LIB_$(ALGORITHM)``. As is the norm for library functions in the
85 allocations, string parsing, lookups in an algorithm registry, and other
113 an arbitrary algorithm from the traditional crypto API by name. These features
117 Note: new kernel features shouldn't support every algorithm, but rather make a
118 deliberate choice about what algorithm(s) to support. History has shown that
121 inappropriate algorithm), and makes your feature easier to use.