+2002-02-19 Niels Möller <nisse@cuckoo.hack.org>
+
+ * configure.in (asm_path): Renamed "path" to "asm_path". Also look
+ for a machine.m4.
+
2002-02-16 Niels Möller <nisse@cuckoo.hack.org>
* sparc/aes.asm: Use that IDX2(j) == j ^ 2
define(AES_IDX_SIZE, 16)dnl
define(AES_TABLE_SIZE, 1024)dnl
-STRUCT(AES)
+STRUCTURE(AES)
STRUCT(SBOX, AES_SBOX_SIZE)
STRUCT(IDX1, AES_IDX_SIZE)
rsa_encrypt(struct rsa_public_key *key,
/* For padding */
void *random_ctx, nettle_random_func random,
- unsigned length, const uint8_t *message,
- mpz_t gibbberish);
+ unsigned length, const uint8_t *cleartext,
+ mpz_t cipher);
/* Message must point to a buffer of size *LENGTH. KEY->size is enough
* for all valid messages. On success, *LENGTH is updated to reflect
* didn't fit. */
int
rsa_decrypt(struct rsa_private_key *key,
- unsigned *length, uint8_t *message,
- const mpz_t gibberish);
+ unsigned *length, uint8_t *cleartext,
+ const mpz_t ciphertext);
/* Compute x, the e:th root of m. Calling it with x == m is allowed. */