KhoaNguyen55/zage
A work in progress age implementation in zig
The format specification is at age-encryption.org/v1. age was designed by @Benjojo and @FiloSottile.
TODO
TODO
TODO
The library is for zig v0.13.0
for now.
To install as a zig library you can run the zig fetch
command:
zig fetch --save https://github.com/KhoaNguyen55/zage/releases/download/v0.1.0-age-test/release.tar.gz
Then add the following to build.zig
:
const age = b.dependency("age", .{
.target = target,
.optimize = optimize,
});
exe.root_module.addImport("age", age.module("age"));
See TODO
for api documentations