From 9021a5dfb37fd3a6f7726f07ef0f27dcb71048e2 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Mon, 18 Apr 2016 07:43:54 -0400 Subject: Rename some lowercase API's Make OBJ_name_cmp internal Rename idea_xxx to IDEA_xxx Rename get_rfc_xxx to BN_get_rfc_xxx Rename v3_addr and v3_asid functions to X509v3_... Reviewed-by: Richard Levitte --- crypto/idea/i_ecb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crypto/idea/i_ecb.c') diff --git a/crypto/idea/i_ecb.c b/crypto/idea/i_ecb.c index e7eeb4f937..9ab64b7dca 100644 --- a/crypto/idea/i_ecb.c +++ b/crypto/idea/i_ecb.c @@ -59,12 +59,12 @@ #include "idea_lcl.h" #include -const char *idea_options(void) +const char *IDEA_options(void) { return ("idea(int)"); } -void idea_ecb_encrypt(const unsigned char *in, unsigned char *out, +void IDEA_ecb_encrypt(const unsigned char *in, unsigned char *out, IDEA_KEY_SCHEDULE *ks) { unsigned long l0, l1, d[2]; @@ -73,7 +73,7 @@ void idea_ecb_encrypt(const unsigned char *in, unsigned char *out, d[0] = l0; n2l(in, l1); d[1] = l1; - idea_encrypt(d, ks); + IDEA_encrypt(d, ks); l0 = d[0]; l2n(l0, out); l1 = d[1]; -- cgit v1.2.3