File tree Expand file tree Collapse file tree 5 files changed +11
-1
lines changed Expand file tree Collapse file tree 5 files changed +11
-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
}
@@ -3862,6 +3863,9 @@ fn test_linux(target: &str) {
3862
3863
// FIXME: Requires more recent kernel headers
3863
3864
"HWTSTAMP_TX_ONESTEP_P2P" if musl => true , // linux v5.6+
3864
3865
3866
+ // FIXME: Requires linux 6.1
3867
+ "ALG_SET_KEY_BY_KEY_SERIAL" | "ALG_SET_DRBG_ENTROPY" => true ,
3868
+
3865
3869
_ => false ,
3866
3870
}
3867
3871
} ) ;
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 @@ -3196,6 +3196,8 @@ pub const ALG_SET_IV: ::c_int = 2;
3196
3196
pub const ALG_SET_OP : :: c_int = 3 ;
3197
3197
pub const ALG_SET_AEAD_ASSOCLEN : :: c_int = 4 ;
3198
3198
pub const ALG_SET_AEAD_AUTHSIZE : :: c_int = 5 ;
3199
+ pub const ALG_SET_DRBG_ENTROPY : :: c_int = 6 ;
3200
+ pub const ALG_SET_KEY_BY_KEY_SERIAL : :: c_int = 7 ;
3199
3201
3200
3202
pub const ALG_OP_DECRYPT : :: c_int = 0 ;
3201
3203
pub const ALG_OP_ENCRYPT : :: c_int = 1 ;
You can’t perform that action at this time.
0 commit comments