mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
std.crypto.Certificate: bump RSA needed memory
This commit is contained in:
parent
0fb78b15aa
commit
66b07fd672
@ -504,7 +504,7 @@ fn verifyRsa(
|
||||
var msg_hashed: [Hash.digest_length]u8 = undefined;
|
||||
Hash.hash(message, &msg_hashed, .{});
|
||||
|
||||
var rsa_mem_buf: [512 * 32]u8 = undefined;
|
||||
var rsa_mem_buf: [512 * 64]u8 = undefined;
|
||||
var fba = std.heap.FixedBufferAllocator.init(&rsa_mem_buf);
|
||||
const ally = fba.allocator();
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user