File tree Expand file tree Collapse file tree 5 files changed +10
-1
lines changed Expand file tree Collapse file tree 5 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -1863,7 +1863,8 @@ fn test_android(target: &str) {
18631863 | "NDA_NDM_FLAGS_MASK"
18641864 | "NDTPA_INTERVAL_PROBE_TIME_MS"
18651865 | "NFQA_UNSPEC"
1866- | "NTF_EXT_LOCKED" => true ,
1866+ | "NTF_EXT_LOCKED"
1867+ | "ALG_SET_DRBG_ENTROPY" => true ,
18671868
18681869 _ => false ,
18691870 }
@@ -3875,6 +3876,8 @@ fn test_linux(target: &str) {
38753876
38763877 // kernel 6.5 minimum
38773878 "MOVE_MOUNT_BENEATH" => true ,
3879+ // FIXME: Requires linux 6.1
3880+ "ALG_SET_KEY_BY_KEY_SERIAL" | "ALG_SET_DRBG_ENTROPY" => true ,
38783881
38793882 _ => false ,
38803883 }
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ ALG_OP_DECRYPT
6161ALG_OP_ENCRYPT
6262ALG_SET_AEAD_ASSOCLEN
6363ALG_SET_AEAD_AUTHSIZE
64+ ALG_SET_DRBG_ENTROPY
6465ALG_SET_IV
6566ALG_SET_KEY
6667ALG_SET_OP
Original file line number Diff line number Diff line change @@ -71,8 +71,10 @@ ALG_OP_DECRYPT
7171ALG_OP_ENCRYPT
7272ALG_SET_AEAD_ASSOCLEN
7373ALG_SET_AEAD_AUTHSIZE
74+ ALG_SET_DRBG_ENTROPY
7475ALG_SET_IV
7576ALG_SET_KEY
77+ ALG_SET_KEY_BY_KEY_SERIAL
7678ALG_SET_OP
7779ALT_DIGITS
7880AM_STR
Original file line number Diff line number Diff line change @@ -2745,6 +2745,7 @@ pub const ALG_SET_IV: ::c_int = 2;
27452745pub const ALG_SET_OP : :: c_int = 3 ;
27462746pub const ALG_SET_AEAD_ASSOCLEN : :: c_int = 4 ;
27472747pub const ALG_SET_AEAD_AUTHSIZE : :: c_int = 5 ;
2748+ pub const ALG_SET_DRBG_ENTROPY : :: c_int = 6 ;
27482749
27492750pub const ALG_OP_DECRYPT : :: c_int = 0 ;
27502751pub const ALG_OP_ENCRYPT : :: c_int = 1 ;
Original file line number Diff line number Diff line change @@ -3210,6 +3210,8 @@ pub const ALG_SET_IV: ::c_int = 2;
32103210pub const ALG_SET_OP : :: c_int = 3 ;
32113211pub const ALG_SET_AEAD_ASSOCLEN : :: c_int = 4 ;
32123212pub const ALG_SET_AEAD_AUTHSIZE : :: c_int = 5 ;
3213+ pub const ALG_SET_DRBG_ENTROPY : :: c_int = 6 ;
3214+ pub const ALG_SET_KEY_BY_KEY_SERIAL : :: c_int = 7 ;
32133215
32143216pub const ALG_OP_DECRYPT : :: c_int = 0 ;
32153217pub const ALG_OP_ENCRYPT : :: c_int = 1 ;
You can’t perform that action at this time.
0 commit comments