Made some advancements on the cryptographic primitives implementation
This commit is contained in:
parent
cb72a9cdc9
commit
0eae5818a0
8 changed files with 69 additions and 17 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue