* To avoid advancing 'cursor', make a local copy that gets advanced * instead. */
| 552 | * instead. |
| 553 | */ |
| 554 | void |
| 555 | crypto_cursor_copydata_noadv(struct crypto_buffer_cursor *cc, int size, |
| 556 | void *vdst) |
| 557 | { |
| 558 | struct crypto_buffer_cursor copy; |
| 559 | |
| 560 | copy = *cc; |
| 561 | crypto_cursor_copydata(©, size, vdst); |
| 562 | } |
| 563 | |
| 564 | /* |
| 565 | * Apply function f to the data in an iovec list starting "off" bytes from |
nothing calls this directly
no test coverage detected