summaryrefslogtreecommitdiffstats
path: root/src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c')
-rw-r--r--src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c b/src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c
index 6180702..004d502 100644
--- a/src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c
+++ b/src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c
@@ -67,7 +67,7 @@ static bool salsa2012_available(void) {
}
/** Initializes the cipher state */
-static fastd_cipher_state_t* salsa2012_init(const uint8_t *key) {
+static fastd_cipher_state_t * salsa2012_init(const uint8_t *key) {
fastd_cipher_state_t *state = fastd_new(fastd_cipher_state_t);
memcpy(state->key, key, KEYBYTES);