You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was looking at the CertifyKey disassembly and it uses several KiB of stack (as of this writing CertifyKeyCmd::execute uses almost 7KiB of stack).
This is somewhat expected since it needs to be able to generate a several KiB cert, but we should see if we can optimize this a bit. There are lots of temporary byte arrays that we use as scratch space and could maybe eliminate. This will get worse when we go to increase the max cert size (#357), so we should address this now.
The text was updated successfully, but these errors were encountered:
I was looking at the CertifyKey disassembly and it uses several KiB of stack (as of this writing
CertifyKeyCmd::execute
uses almost 7KiB of stack).This is somewhat expected since it needs to be able to generate a several KiB cert, but we should see if we can optimize this a bit. There are lots of temporary byte arrays that we use as scratch space and could maybe eliminate. This will get worse when we go to increase the max cert size (#357), so we should address this now.
The text was updated successfully, but these errors were encountered: