Skip to content
Snippets Groups Projects
Commit a71ad6f0 authored by Niels Möller's avatar Niels Möller
Browse files

Renamed MD_PAD to MD_FINAL.

Rev: nettle/macros.h:1.5
parent 0ec5cef0
No related branches found
No related tags found
No related merge requests found
...@@ -185,7 +185,10 @@ do { \ ...@@ -185,7 +185,10 @@ do { \
; \ ; \
} while (0) } while (0)
#define MD_PAD(ctx, bits, shift, f, write) \ /* Final wrapup - pad to block boundary with the bit pattern
1 0* (count of bits processed) */
#define MD_FINAL(ctx, bits, shift, f, write) \
do { \ do { \
unsigned __md_i; \ unsigned __md_i; \
uint##bits##_t __md_low, __md_high; \ uint##bits##_t __md_low, __md_high; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment