b5a8f767a6
- Sync des/blowfish to more recent openssl. Obtained from: KAME/NetBSD MFC after: 2 weeks
18 lines
411 B
ArmAsm
18 lines
411 B
ArmAsm
/* $NetBSD: bf_enc.S,v 1.1 2001/09/09 11:01:01 tls Exp $ */
|
|
/* $FreeBSD$ */
|
|
|
|
/*
|
|
* Written by Jason R. Thorpe <thorpej@zembu.com> and Thor Lancelot Simon
|
|
* <tls@netbsd.org>. Public domain.
|
|
*/
|
|
|
|
/*
|
|
* XXX Should use CPP symbols defined as a result of
|
|
* XXX `cc -mcpu=pentiumpro'.
|
|
*/
|
|
#if defined(I386_CPU) || defined(I486_CPU) || defined(I586_CPU)
|
|
#include "bf_enc_586.S"
|
|
#else
|
|
#include "bf_enc_686.S"
|
|
#endif
|