File tree 5 files changed +10
-1
lines changed
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) {
1863
1863
| "NDA_NDM_FLAGS_MASK"
1864
1864
| "NDTPA_INTERVAL_PROBE_TIME_MS"
1865
1865
| "NFQA_UNSPEC"
1866
- | "NTF_EXT_LOCKED" => true ,
1866
+ | "NTF_EXT_LOCKED"
1867
+ | "ALG_SET_DRBG_ENTROPY" => true ,
1867
1868
1868
1869
_ => false ,
1869
1870
}
@@ -3875,6 +3876,8 @@ fn test_linux(target: &str) {
3875
3876
3876
3877
// kernel 6.5 minimum
3877
3878
"MOVE_MOUNT_BENEATH" => true ,
3879
+ // FIXME: Requires linux 6.1
3880
+ "ALG_SET_KEY_BY_KEY_SERIAL" | "ALG_SET_DRBG_ENTROPY" => true ,
3878
3881
3879
3882
_ => false ,
3880
3883
}
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ ALG_OP_DECRYPT
61
61
ALG_OP_ENCRYPT
62
62
ALG_SET_AEAD_ASSOCLEN
63
63
ALG_SET_AEAD_AUTHSIZE
64
+ ALG_SET_DRBG_ENTROPY
64
65
ALG_SET_IV
65
66
ALG_SET_KEY
66
67
ALG_SET_OP
Original file line number Diff line number Diff line change @@ -71,8 +71,10 @@ ALG_OP_DECRYPT
71
71
ALG_OP_ENCRYPT
72
72
ALG_SET_AEAD_ASSOCLEN
73
73
ALG_SET_AEAD_AUTHSIZE
74
+ ALG_SET_DRBG_ENTROPY
74
75
ALG_SET_IV
75
76
ALG_SET_KEY
77
+ ALG_SET_KEY_BY_KEY_SERIAL
76
78
ALG_SET_OP
77
79
ALT_DIGITS
78
80
AM_STR
Original file line number Diff line number Diff line change @@ -2745,6 +2745,7 @@ pub const ALG_SET_IV: ::c_int = 2;
2745
2745
pub const ALG_SET_OP : :: c_int = 3 ;
2746
2746
pub const ALG_SET_AEAD_ASSOCLEN : :: c_int = 4 ;
2747
2747
pub const ALG_SET_AEAD_AUTHSIZE : :: c_int = 5 ;
2748
+ pub const ALG_SET_DRBG_ENTROPY : :: c_int = 6 ;
2748
2749
2749
2750
pub const ALG_OP_DECRYPT : :: c_int = 0 ;
2750
2751
pub 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;
3210
3210
pub const ALG_SET_OP : :: c_int = 3 ;
3211
3211
pub const ALG_SET_AEAD_ASSOCLEN : :: c_int = 4 ;
3212
3212
pub 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 ;
3213
3215
3214
3216
pub const ALG_OP_DECRYPT : :: c_int = 0 ;
3215
3217
pub const ALG_OP_ENCRYPT : :: c_int = 1 ;
You can’t perform that action at this time.
0 commit comments