Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mutable 'seed' not accessible across namespace boundary #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1602,12 +1602,16 @@ pub fn client_connect(
a1[32..].* = seed;
a2[32..].* = seed;

const KeyExpansionState = struct {
seed: *const [77]u8,
a1: *[32 + seed.len]u8,
a2: *[32 + seed.len]u8,
master_secret: *const [48]u8,
};
{
const seedlen = seed.len;

const KeyExpansionState = struct {
seed: *const [77]u8,
a1: *[32 + seedlen]u8,
a2: *[32 + seedlen]u8,
master_secret: *const [48]u8,
};
}

const next_32_bytes = struct {
inline fn f(
Expand Down