Home
last modified time | relevance | path

Searched refs:drbg_flag_t (Results 1 – 2 of 2) sorted by relevance

/linux-4.19.296/include/crypto/
Ddrbg.h82 typedef uint32_t drbg_flag_t; typedef
85 drbg_flag_t flags; /* flags for the cipher */
267 #define DRBG_CTR ((drbg_flag_t)1<<0)
268 #define DRBG_HMAC ((drbg_flag_t)1<<1)
269 #define DRBG_HASH ((drbg_flag_t)1<<2)
272 #define DRBG_STRENGTH128 ((drbg_flag_t)1<<3)
273 #define DRBG_STRENGTH192 ((drbg_flag_t)1<<4)
274 #define DRBG_STRENGTH256 ((drbg_flag_t)1<<5)
/linux-4.19.296/crypto/
Ddrbg.c208 static inline unsigned short drbg_sec_strength(drbg_flag_t flags) in drbg_sec_strength()