Add an 'confidential' nonce to be consumed by an ongoing SHA-256 evaluation. * * Precondition: NULL != ctx; * NULL != nonce; */
| 34 | * NULL != nonce; |
| 35 | */ |
| 36 | void simplicity_sha256_confNonce(sha256_context* ctx, const confidential* nonce) { |
| 37 | simplicity_sha256_confidential(0x02, 0x03, ctx, nonce); |
| 38 | } |
| 39 | |
| 40 | /* Add an 'confidential' amount to be consumed by an ongoing SHA-256 evaluation. |
| 41 | * |
no test coverage detected