Skip to content

Commit

Permalink
Revert "C++ compat"
Browse files Browse the repository at this point in the history
This reverts commit 48a6796.
  • Loading branch information
jedisct1 committed Sep 8, 2023
1 parent 4776f39 commit c3692bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@

typedef uint64x2_t BlockVec;

#define LOAD128(a) vld1q_u64((const uint64_t *) (const void *) a)
#define STORE128(a, b) vst1q_u64(((uint64_t *) (void *) a), (b))
#define LOAD128(a) vld1q_u64((const void *) a)
#define STORE128(a, b) vst1q_u64(((void *) a), (b))
#define AES_XENCRYPT(block_vec, rkey) \
vreinterpretq_u64_u8( \
vaesmcq_u8(vaeseq_u8(vreinterpretq_u8_u64(block_vec), rkey)))
Expand Down

0 comments on commit c3692bb

Please sign in to comment.