authorgravatar for 124872+jedisct1@users.noreply.github.comFrank Denis <124872+jedisct1@users.noreply.github.com> 2020-08-14 16:23:55+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-08-16 22:35:27-07:00
log739b68938cb233d88e47ab73047787aba0ccb918
tree5273026e96bed19063152239d1179fb12c2651d8
parent6af9bc8c686c5eeaff274fa7ebb96b1ead3212ce

Update lib/std/crypto/25519/field25519.zig

Co-authored-by: Jakub Konka <kubkon@jakubkonka.com>

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/crypto/25519/field25519.zig+1-1
...@@ -3,7 +3,7 @@ const readIntLittle = std.mem.readIntLittle;...@@ -3,7 +3,7 @@ const readIntLittle = std.mem.readIntLittle;
3const writeIntLittle = std.mem.writeIntLittle;3const writeIntLittle = std.mem.writeIntLittle;
44
5pub const Fe = struct {5pub const Fe = struct {
6 limbs: [5]u64 = undefined,6 limbs: [5]u64,
77
8 const MASK51: u64 = 0x7ffffffffffff;8 const MASK51: u64 = 0x7ffffffffffff;
99