30 lines
406 B
C
Executable File
30 lines
406 B
C
Executable File
#pragma ident "@(#)_crypt.c 1.3 93/01/27 SMI" /* from S5R2 1.3 */
|
|
|
|
/*LINTLIBRARY*/
|
|
/*
|
|
* This program implements the
|
|
* Proposed Federal Information Processing
|
|
* Data Encryption Standard.
|
|
* See Federal Register, March 17, 1975 (40FR12134)
|
|
*/
|
|
|
|
|
|
/*
|
|
* The payoff: encrypt a block.
|
|
*/
|
|
|
|
void
|
|
encrypt(block, edflag)
|
|
char *block;
|
|
int edflag;
|
|
{
|
|
}
|
|
|
|
char *
|
|
_crypt(pw, salt)
|
|
char *pw, *salt;
|
|
{
|
|
return (0);
|
|
}
|
|
|