cryptocode

Results 17 issues of cryptocode

For instance, cmd+click/F12 on `remove()` works if code is formatted the normal way: ``` builder.add().remove().process().finalize(); ``` But not if there are lines breaks: ``` var x = builder. add(). remove()....

Is support for reference-type expected planned? I ran into the need, and the workarounds are not great.

My node crashed occasionally during shutdown with an _invalid mutex_ termination in the block_processor destructor. The issue is that processing threads are running while the node is tearing down, leading...

bug

These are 404: * Bison Grammar * Flex Tokenizer

bug
documentation

I'd like: 1. A way to export an aes256 encrypted seed to file 2. A QR code of the hex version of the encrypted seed (same hex under it), which...

Priority: Low
Type: Enhancement

### Zig Version 0.10.0-dev.295+f19b5ecf4 ### Steps to Reproduce This occurs when the `AutoArrayHashMap` key type is an enum with a single member **and** the value type is `void`. This construct...

bug
contributor friendly
standard library

### Zig Version 0.10.0-dev.359+fa84625ae ### Steps to Reproduce ```zig const std = @import("std"); pub fn main() void { comptime { var pack = std.PackedIntArray(u8, 2).initAllTo(0); _ = pack.get(0); } }...

bug
stage1

### Zig Version 0.11.0-dev.49+b19161ba9 ### Steps to Reproduce and Observed Behavior ```zig const std = @import("std"); test "overflow" { const x = std.math.minInt(i8) / @as(i8, -1); std.debug.print("{}\n", .{x}); } ```...

bug
stage2

### Zig Version 0.10.0-dev.4587+710e2e7f1 ### Steps to Reproduce and Observed Behavior When the type is missing: ``` fn func(comptime x) u64 { return x * 2; } ``` ...then the...

bug
stage2
error message

Below are three fbs files, two of which includes `assets.fbs` which contains a union. Depending on compilation order, the generated Python code is missing a class. assets.fbs ``` union Asset...