Skip to content

Commit f055450

Browse files
committed
update docs
1 parent 854fa4c commit f055450

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/draft/async-crypto.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ if (ret != 0) {
270270
271271
The Final request sends whatever partial data remains in the client's buffer
272272
(0 to `BLOCK_SIZE - 1` bytes) with `isLastBlock = 1`. The server handles
273-
MD5-style padding and produces the final digest. The Final response copies the
273+
the padding and produces the final digest. The Final response copies the
274274
digest to the caller's output buffer and resets the `wc_Sha*` context (via
275275
`wc_InitSha*_ex`, preserving `devId`).
276276
@@ -344,7 +344,7 @@ reaches the server:
344344
block (from the partial buffer) or the final tail travels inline.
345345

346346
The hash state (`resumeState`) always travels **inline**, not via DMA, for
347-
cross-architecture concerns (endian translation, address space isolation).
347+
cross-architecture concerns (endian translation, etc.)
348348

349349
DMA async functions require the client to stash the translated DMA address
350350
across the Request/Response boundary for POST cleanup. This context is stored

0 commit comments

Comments
 (0)