File: libdes.tex

package info (click to toggle)
krb5 1.4.4-7etch1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 49,200 kB
  • ctags: 25,837
  • sloc: ansic: 270,278; exp: 21,157; makefile: 10,635; sh: 6,403; yacc: 2,515; perl: 1,925; cpp: 743; awk: 449; python: 379; asm: 248; lex: 190; sed: 172; csh: 147
file content (38 lines) | stat: -rw-r--r-- 1,213 bytes parent folder | download | duplicates (10)
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
30
31
32
33
34
35
36
37
38
\documentstyle[fixunder,functions,twoside]{article}
\setlength{\oddsidemargin}{0.25in}
\setlength{\evensidemargin}{-0.25in}
\setlength{\topmargin}{-.5in}
\setlength{\textheight}{9in}
\setlength{\parskip}{.1in}
\setlength{\parindent}{2em}
\setlength{\textwidth}{6.25in}

\pagestyle{headings}
\begin{document}
\begin{center}
{\Huge Kerberos V5 Data Encryption Standard library} \\
{\Large DRAFT}
\end{center}
\section{DES functions}
The DES functions conform to the encryption interface required by the
Kerberos version 5 library, and provide an encryption mechanism based on
the DES Cipher-block chaining mode (CBC), with the addition of a
cyclical redundancy check (CRC-32) for integrity checking upon
decryption.

The functions have the same signatures as those described by the main
library document; the names are:
{\obeylines
\funcname{mit_des_encrypt_func}
\funcname{mit_des_decrypt_func}
\funcname{mit_des_process_key}
\funcname{mit_des_finish_key}
\funcname{mit_des_string_to_key}
\funcname{mit_des_init_random_key}
\funcname{mit_des_finish_random_key}
\funcname{mit_des_random_key}
}
The \datatype{krb5_cryptosystem_entry} for this cryptosystem is
\globalname{mit_des_cryptosystem_entry}.

\end{document}