Jerry Devis
Jerry Devis
When opening tpm, the flag is set to O_NONBLOCK. https://github.com/tpm2-software/tpm2-tss/blob/512b90dd3a5b814ea4eca973b70e92538fd630c7/src/tss2-tcti/tcti-device.c#L384-L390 Therefore, when the tcti-device calls write(), it will directly return success, and the tpm driver will write the tpm asynchronously....
Hi, teamer. When Tss2_TctiLdr_Initialize is executed, the tcti_from_file interface is called. In tcti_from_file, `PATH_MAX`(4KB) of stack space is malloced. Is there some problems for some resource-constrained embedded devices?
In tctildr.h, there are the duplicated declaration for 'tcti_from_info' https://github.com/tpm2-software/tpm2-tss/blob/d78b1267d605c313dddd56bcec192303dcde1c2a/src/tss2-tcti/tctildr.h#L35-L76
Hi, stefan. rev164 has support CC_ECC_Encrypt and CC_ECC_Decrypt commands, and the code PR #292 are from [Trusted Platform Module Library Part 3: Commands](https://trustedcomputinggroup.org/wp-content/uploads/TCG_TPM2_r1p64_Part3_Commands_code_15may2021.pdf) and [Trusted Platform Module Library Part 4:...
The SM2 elliptic curve ID is 41 in RFC8998 and Tongsuo adopt the curve ID in TLCP and ShangMi (SM) Cipher Suites for TLS 1.3. ``` NamedGroup curveSM2 = {...
**Library** Library not loaded: /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers **Test Application** otools\clang...... **Steps To Reproduce** 1. I installed darling with the latest .deb binary. 2. I downloaded the Xcode and uncompressed it to /home...
#### Describe the bug JavaLogFactory.java's readLoggerConfiguration function throws ConcurrentModificationException at this line ```java if (System.getProperties().keySet().stream().anyMatch(propKey -> "java.util.logging.config.class".equals(propKey) || "java.util.logging.config.file".equals(propKey))) ``` in a multi-threaded environment when another thread is concurrently setting...
SecureRandom.getInstance(SHA1) is to generate a pseudorandom number sequence by continuously performing SHA1. The right way: Use SecureRandom.getInstanceStrong() to generate random numbers.