Lines Matching refs:write
54 If an output argument is in shared memory, there is a risk of a **write-read inconsistency**:
60 …ace. (This is how `mbedtls_rsa_pkcs1_sign` works.) A malicious client may write badly formatted da…
64 #### Write-write disclosure
66 If an output argument is in shared memory, there is a risk of a **write-write disclosure**:
96 Note that although copying is very easy to write into a program, there is a risk that a compiler (e…
102 …hared memory cannot result in a security violation other than [write-read feedback](#write-read-fe…
106 * Never write to the output twice at the same index.
107 …* This rule can usefully be relaxed in many circumstances. It is ok to write data that is independ…
155 …an implementation to have a [write-read inconsistency](#write-read-inconsistency) or a [write-writ…
186 AEAD decryption is at risk of [write-write disclosure](#write-write-disclosure) when the tag does n…
194 …AEAD outputs are at risk of [write-read inconsistency](#write-read-inconsistency) and [write-write…
378 TODO: write document and reference it here.
456 2. Document the prototype - write a short guide that can be followed to arrive at the same prototyp…
481 …, it is necessary to write tests to check that we can correctly detect careful-access violations w…
486 Then, write a careful-access test for this function and ensure that it fails.
514 …at and therefore susceptible to read-read inconsistencies and potentially write-read inconsistenci…
678 …ss their input/output buffers rather than the copies, it would be best to write a test function th…
683 Then, we could write a test that uses this function with memory poisoning and ensure that it fails.…