summaryrefslogtreecommitdiff
path: root/nacl/curvecp/uint64_unpack.c
blob: 2d69bf723d99807391785968670c20ed5f73373b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "uint64_unpack.h"

crypto_uint64 uint64_unpack(const unsigned char *x)
{
  crypto_uint64 result;
  result = x[7];
  result <<= 8; result |= x[6];
  result <<= 8; result |= x[5];
  result <<= 8; result |= x[4];
  result <<= 8; result |= x[3];
  result <<= 8; result |= x[2];
  result <<= 8; result |= x[1];
  result <<= 8; result |= x[0];
  return result;
}