Skip to content

Commit a81e82c

Browse files
committed
Improve comments, fix dates, add header
1 parent ff5bd47 commit a81e82c

8 files changed

+18
-2
lines changed

COPYRIGHT

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
The included code and documentation ("scrypt") is distributed under the
22
following terms:
33

4-
Copyright 2005-2023 Colin Percival. All rights reserved.
5-
Copyright 2011-2023 Tarsnap Backup Inc. All rights reserved.
4+
Copyright 2005-2025 Colin Percival. All rights reserved.
5+
Copyright 2011-2025 Tarsnap Backup Inc. All rights reserved.
66
Copyright 2014 Sean Kelly. All rights reserved.
77

88
Redistribution and use in source and binary forms, with or without

libcperciva/cpusupport/Build/cpusupport-ARM-AES.c

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#include <stdint.h>
2+
13
#ifdef __ARM_NEON
24
#include <arm_neon.h>
35
#endif
@@ -11,10 +13,12 @@ main(void)
1113
uint32x4_t lanes = {0};
1214
uint8_t arr[16] = {0};
1315

16+
/* Check AES. */
1417
data = vld1q_u8(arr);
1518
output = vaeseq_u8(data, key);
1619
(void)output; /* UNUSED */
1720

21+
/* Check _u32: some compilers only support the _u8 variant. */
1822
lanes = vdupq_laneq_u32(lanes, 0);
1923

2024
/* Success! */

libcperciva/cpusupport/cpusupport_x86_aesni.c

+2
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,7 @@ CPUSUPPORT_FEATURE_DECL(x86, aesni)
2626

2727
unsupported:
2828
#endif
29+
30+
/* Not supported. */
2931
return (0);
3032
}

libcperciva/cpusupport/cpusupport_x86_rdrand.c

+2
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,7 @@ CPUSUPPORT_FEATURE_DECL(x86, rdrand)
2626

2727
unsupported:
2828
#endif
29+
30+
/* Not supported. */
2931
return (0);
3032
}

libcperciva/cpusupport/cpusupport_x86_shani.c

+2
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,7 @@ CPUSUPPORT_FEATURE_DECL(x86, shani)
3131

3232
unsupported:
3333
#endif
34+
35+
/* Not supported. */
3436
return (0);
3537
}

libcperciva/cpusupport/cpusupport_x86_sse2.c

+2
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,7 @@ CPUSUPPORT_FEATURE_DECL(x86, sse2)
2626

2727
unsupported:
2828
#endif
29+
30+
/* Not supported. */
2931
return (0);
3032
}

libcperciva/cpusupport/cpusupport_x86_ssse3.c

+2
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,7 @@ CPUSUPPORT_FEATURE_DECL(x86, ssse3)
2626

2727
unsupported:
2828
#endif
29+
30+
/* Not supported. */
2931
return (0);
3032
}

libcperciva/util/align_ptr.h

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ align_ptr(uint8_t * arr, size_t alignment)
4444
*/
4545
offset = (uintptr_t)(&arr[0]) % alignment;
4646
offset = (alignment - offset) % alignment;
47+
48+
/* Return the aligned pointer. */
4749
return ((void *)&arr[offset]);
4850
}
4951

0 commit comments

Comments
 (0)