blob: 67fc100a50987b59cee2a64e797a7ecf18793edc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* ISC license. */
#include <stdint.h>
#include <skalibs/bytestr.h>
#include <skalibs/sha256.h>
#include "sha256-internal.h"
void sha256_final (SHA256Schedule *ctx, char *digest)
{
unsigned char *p = (unsigned char *)digest ;
uint32_t bits[2] = { ctx->bits[0], ctx->bits[1] } ;
sha256_feed(ctx, 0x80) ;
while (ctx->b != 56) sha256_feed(ctx, 0) ;
sha256_feed(ctx, T8(bits[1]>>24)) ;
sha256_feed(ctx, T8(bits[1]>>16)) ;
sha256_feed(ctx, T8(bits[1]>>8)) ;
sha256_feed(ctx, T8(bits[1])) ;
sha256_feed(ctx, T8(bits[0]>>24)) ;
sha256_feed(ctx, T8(bits[0]>>16)) ;
sha256_feed(ctx, T8(bits[0]>>8)) ;
sha256_feed(ctx, T8(bits[0])) ;
for (uint32_t i = 0 ; i < 8 ; i++)
{
*p++ = T8(ctx->buf[i]>>24) ;
*p++ = T8(ctx->buf[i]>>16) ;
*p++ = T8(ctx->buf[i]>>8) ;
*p++ = T8(ctx->buf[i]) ;
}
}
|