| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/lib/include/crypto/ |
Upload File : |
/* $FreeBSD: releng/12.4/sys/opencrypto/skipjack.h 292963 2015-12-30 22:43:07Z allanjude $ */ /* $OpenBSD: skipjack.h,v 1.3 2002/03/14 01:26:51 millert Exp $ */ /*- * Further optimized test implementation of SKIPJACK algorithm * Mark Tillotson <markt@chaos.org.uk>, 25 June 98 * Optimizations suit RISC (lots of registers) machine best. * * based on unoptimized implementation of * Panu Rissanen <bande@lut.fi> 960624 * * SKIPJACK and KEA Algorithm Specifications * Version 2.0 * 29 May 1998 */ #ifndef _SKIPJACK_H_ #define _SKIPJACK_H_ extern void skipjack_forwards(u_int8_t *plain, u_int8_t *cipher, u_int8_t **key); extern void skipjack_backwards(u_int8_t *cipher, u_int8_t *plain, u_int8_t **key); extern void subkey_table_gen(u_int8_t *key, u_int8_t **key_tables); #endif