We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e5c5d commit bb6ce21Copy full SHA for bb6ce21
.github/workflows/ci.yml
@@ -73,6 +73,3 @@ jobs:
73
74
- name: Build library
75
run: zig build-lib src/root.zig --name hash_zig
76
-
77
- - name: Run example
78
- run: zig build example
examples/basic_usage.zig
@@ -13,7 +13,7 @@ pub fn main() !void {
13
std.debug.print("================\n\n", .{});
14
15
// Initialize with 128-bit security
16
- const params = hash_sig.Parameters.init(.level_128, .lifetime_2_16);
+ const params = hash_sig.Parameters.init(.level_128, .lifetime_2_10);
17
var sig_scheme = try hash_sig.HashSignature.init(allocator, params);
18
defer sig_scheme.deinit();
19
0 commit comments