Linux

  1. Home
  2. Computing & Technology
  3. Linux
Linux / Unix Command: encrypt
Command Library

NAME

encrypt - Encrypt 64 bits messages  

SYNOPSIS

#define _XOPEN_SOURCE

#include <unistd.h>

void encrypt(char block[64], int edflag);
void setkey(const char *key);  

DESCRIPTION

These functions encrypt and decrypt 64 bit messages. The setkey() function sets the key used by encrypt(). The key parameter used here is an array of bytes, having each byte the numerical value 1 or 0. The key[n] byte, where n=8*q-1, is ignored consisting the key used of 56 bits.

The setkey() function modifies the passed buffer, encoding if edflag is 0, and decoding if 1 is being passed.

These functions are not reentrant.  

RETURN VALUE

These functions do not return any value.  

CONFORMING TO

SVID, SUSv2  

SEE ALSO

crypt(3)


Important: Use the man command (% man) to see how a command is used on your particular computer.

>> Linux/Unix Command Library

>> Shell Command Library

Explore Linux

About.com Special Features

Linux

  1. Home
  2. Computing & Technology
  3. Linux

©2009 About.com, a part of The New York Times Company.

All rights reserved.