Nicolas IOOSS
Nicolas IOOSS
Hello, Thanks for your reply. I think there are two issues, which could be discussed separately: 1. A Python program using LIEF can segfault (when calling `elf.add(segment)` on a crafted...
In `tpm2_ptool`, the parent handle is decoded in https://github.com/tpm2-software/tpm2-pkcs11/blob/8a4ec0d09b76dfbdea4386f48b6ed0f6bc5cee3c/tools/tpm2_pkcs11/commandlets_keys.py#L606 A possible fix can consist in making sure the value is non-negative, for example by adding to `create_from_tss_key`: ```diff iff --git...
Hello, is there any progress regarding tagging a release? If releasing a v1.0.0-rc1 (as mentionned in https://github.com/bitcoin-core/secp256k1/milestone/1) is still expecting to take a few years/decades, would it be possible to...
Hello, is there any plan to fix this issue? It seems not to be patched, after 3 years of having been reported. More precisely I have written the following program,...
Hello, thanks for your comments! > 1. Aux registers, seems like you're only including a small few. Are you adding any more of them There are actually many auxiliary registers,...
# 1. AUX registers For the AUX registers, I think there are several difficulties in your approach. In order to make thinks clearer, here are some code examples. In some...
@mumbel For the AUX registers, I began a PoC and encountered issues because the decompiler did not consider the register as "volatile". For example when interacting with the MMU (like...
> Yes, if we want to emulate the instructions to run the pcodetests you would need to implement the norm function to get it to work for the division tests...
I added `Ghidra/Processors/ARCompact/src/main/java/ghidra/program/emulation/ARCompactEmulateInstructionStateModifier.java` in order to implement the emulation of instruction `norm` in Java. The pcodetests are still all green. Thanks for your great feedback! What would be the next...
Thanks for the review! I reworked my Pull Request, checked that the pcode tests still work and that the disassembler and decompiler output did not change in an unexpected way...