diff options
Diffstat (limited to 'src/libstdcrypto/sha256_update.c')
-rw-r--r-- | src/libstdcrypto/sha256_update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstdcrypto/sha256_update.c b/src/libstdcrypto/sha256_update.c index c87644e..3cd4781 100644 --- a/src/libstdcrypto/sha256_update.c +++ b/src/libstdcrypto/sha256_update.c @@ -3,7 +3,7 @@ #include <skalibs/sha256.h> #include "sha256-internal.h" -void sha256_update (SHA256Schedule_ref ctx, char const *buf, unsigned int len) +void sha256_update (SHA256Schedule *ctx, char const *buf, unsigned int len) { register unsigned int i = 0 ; for (; i < len ; i++) sha256_feed(ctx, (unsigned char)buf[i]) ; |