Made some advancements on the cryptographic primitives implementation

This commit is contained in:
Gu://em_ 2026-07-03 21:56:17 +02:00
parent cb72a9cdc9
commit 0eae5818a0
8 changed files with 69 additions and 17 deletions

View file

@ -10,6 +10,10 @@ pub const CBC256_Implementation = struct {
// TODO
pub const CBC265_DefaultImplementation = struct {
// Zig stdlib seems to provide no support for AES CBC265
// It may need some custom implementation or another library
pub fn encrypt(key: *const [32]u8, iv: *const [16]u8, data: *const []u8) !void {
_ = key;
_ = iv;