setkey_r (3) - Linux Manuals
setkey_r: encrypt 64-bit messages
NAME
encrypt, setkey, encrypt_r, setkey_r - encrypt 64-bit messages
SYNOPSIS
#define _XOPEN_SOURCE /* See feature_test_macros(7) */ #include <unistd.h> void encrypt(char block[64], int edflag); #define _XOPEN_SOURCE /* See feature_test_macros(7) */ #include <stdlib.h> void setkey(const char *key); #define _GNU_SOURCE /* See feature_test_macros(7) */ #include <crypt.h> void setkey_r(const char *key, struct crypt_data *data); void encrypt_r(char *block, int edflag, struct crypt_data *data);
Each of these requires linking with -lcrypt.
DESCRIPTION
These functions encrypt and decrypt 64-bit messages. The setkey() function sets the key used by encrypt(). The key argument used here is an array of 64 bytes, each of which has numerical value 1 or 0. The bytes key[n] where n=8*i-1 are ignored, so that the effective key length is 56 bits.The encrypt() function modifies the passed buffer, encoding if edflag is 0, and decoding if 1 is being passed. Like the key argument, also block is a bit vector representation of the actual value that is encoded. The result is returned in that same vector.
These two functions are not reentrant, that is, the key data is kept in static storage. The functions setkey_r() and encrypt_r() are the reentrant versions. They use the following structure to hold the key data:
struct crypt_data {
Before calling
setkey_r()
set
data->initialized
to zero.
The functions
encrypt_r()
and
setkey_r()
are GNU extensions.
int
main(void)
{
RETURN VALUE
These functions do not return any value.
ERRORS
Set
errno
to zero before calling the above functions.
On success, it is unchanged.
VERSIONS
Because they employ the DES block cipher,
which is no longer considered secure,
crypt(),
crypt_r(),
setkey(),
and
setkey_r()
were removed in glibc 2.28.
Applications should switch to a modern cryptography library, such as
libgcrypt.
ATTRIBUTES
For an explanation of the terms used in this section, see
attributes(7).
Interface Attribute Value
encrypt(),
setkey()
Thread safety MT-Unsafe race:crypt
encrypt_r(),
setkey_r()
Thread safety MT-Safe CONFORMING TO
encrypt(),
setkey():
POSIX.1-2001, POSIX.1-2008, SUS, SVr4.
NOTES
Availability in glibc
See
crypt(3).
Features in glibc
In glibc 2.2, these functions use the DES algorithm.
EXAMPLES
#define _XOPEN_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <crypt.h>
COLOPHON
This page is part of release 5.10 of the Linux
man-pages
project.
A description of the project,
information about reporting bugs,
and the latest version of this page,
can be found at
https://www.kernel.org/doc/man-pages/.