Files
Arquivotheca.Solaris-2.5/lib/libbc/libc/gen/common/_crypt.c
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

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);
}