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

@ -3,5 +3,9 @@ pub const Implementation = struct {
};
pub const defaultImplementation = struct {
const X25519 = @import("std").std.crypto.dh.X25519;
// One problem, it uses the zig's io module, which is not supported yet as it depends on the target OS
// It may need a custom implementation or some other library
};