2026-06-15 15:23:41 +02:00
|
|
|
pub const Implementation = struct {
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pub const defaultImplementation = struct {
|
2026-07-03 21:56:17 +02:00
|
|
|
|
|
|
|
|
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
|
2026-06-15 15:23:41 +02:00
|
|
|
};
|