summaryrefslogtreecommitdiff
path: root/libcrypt/crypt_stub.c
blob: 580df6c8b0658ed59b878f0b928a20ed325ac203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* vi: set sw=4 ts=4: */
/*
 * crypt() for uClibc
 * Copyright (C) 2008 by Erik Andersen <andersen@uclibc.org>
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include <crypt.h>
#include <unistd.h>
#include "libcrypt.h"
#include <syscall.h>

char *crypt(const char *key attribute_unused, const char *salt attribute_unused)
{
	__set_errno(ENOSYS);
	return NULL;
}

void
setkey(const char *key attribute_unused)
{
	__set_errno(ENOSYS);
}

void
encrypt(char *block attribute_unused, int flag attribute_unused)
{
	__set_errno(ENOSYS);
}