cipher_contextRegular
4.4: Absent ⚠️
4.8: Absent ⚠️
4.10: Absent ⚠️
4.13: Absent ⚠️
4.15: Absent ⚠️
4.18: Absent ⚠️
5.0: ✅struct cipher_context {
u16 prepend_size;
u16 tag_size;
u16 overhead_size;
u16 iv_size;
char *iv;
u16 rec_seq_size;
char *rec_seq;
};
5.3: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
5.4: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
5.8: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
5.11: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
5.13: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
5.15: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
5.19: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
6.2: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
6.5: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
6.8: ✅struct cipher_context {
char iv[20];
char rec_seq[8];
};
arm64: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
armhf: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
ppc64el: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
riscv64: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
aws: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
azure: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
gcp: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
lowlatency: ✅struct cipher_context {
char *iv;
char *rec_seq;
};
Regular
5.0 and 5.3 ⚠️u16 prepend_size
u16 tag_size
u16 overhead_size
u16 iv_size
u16 rec_seq_size
5.3 and 5.4 ✅
5.4 and 5.8 ✅
5.8 and 5.11 ✅
5.11 and 5.13 ✅
5.13 and 5.15 ✅
5.15 and 5.19 ✅
5.19 and 6.2 ✅
6.2 and 6.5 ✅
6.5 and 6.8 ⚠️char *iv ➡️ char iv[20]
char *rec_seq ➡️ char rec_seq[8]
amd64 and arm64 ✅
amd64 and armhf ✅
amd64 and ppc64el ✅
amd64 and riscv64 ✅
generic and aws ✅
generic and azure ✅
generic and gcp ✅
generic and lowlatency ✅