comparison src/cipher.c @ 11677:8004885fabbe

[gaim-migrate @ 13963] Remove some things from the public namespace by making them static committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 17 Oct 2005 05:50:30 +0000
parents 036bd21c5560
children cfc808463763
comparison
equal deleted inserted replaced
11676:0c54f9b0e67c 11677:8004885fabbe
703 703
704 /* 704 /*
705 * * These two tables are part of the 'permuted choice 1' function. 705 * * These two tables are part of the 'permuted choice 1' function.
706 * * In this implementation several speed improvements are done. 706 * * In this implementation several speed improvements are done.
707 * */ 707 * */
708 guint32 leftkey_swap[16] = 708 static guint32 leftkey_swap[16] =
709 { 709 {
710 0x00000000, 0x00000001, 0x00000100, 0x00000101, 710 0x00000000, 0x00000001, 0x00000100, 0x00000101,
711 0x00010000, 0x00010001, 0x00010100, 0x00010101, 711 0x00010000, 0x00010001, 0x00010100, 0x00010101,
712 0x01000000, 0x01000001, 0x01000100, 0x01000101, 712 0x01000000, 0x01000001, 0x01000100, 0x01000101,
713 0x01010000, 0x01010001, 0x01010100, 0x01010101 713 0x01010000, 0x01010001, 0x01010100, 0x01010101
714 }; 714 };
715 715
716 guint32 rightkey_swap[16] = 716 static guint32 rightkey_swap[16] =
717 { 717 {
718 0x00000000, 0x01000000, 0x00010000, 0x01010000, 718 0x00000000, 0x01000000, 0x00010000, 0x01010000,
719 0x00000100, 0x01000100, 0x00010100, 0x01010100, 719 0x00000100, 0x01000100, 0x00010100, 0x01010100,
720 0x00000001, 0x01000001, 0x00010001, 0x01010001, 720 0x00000001, 0x01000001, 0x00010001, 0x01010001,
721 0x00000101, 0x01000101, 0x00010101, 0x01010101, 721 0x00000101, 0x01000101, 0x00010101, 0x01010101,