File: crypt.h.html

package info (click to toggle)
librudiments0 0.27-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,528 kB
  • ctags: 2,284
  • sloc: cpp: 14,657; sh: 7,547; ansic: 2,664; makefile: 945; xml: 15
file content (54 lines) | stat: -rw-r--r-- 3,508 bytes parent folder | download
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<title>~/src/firstworks/rudiments-0.27/include/rudiments/crypt.h.html</title>
<meta name="Generator" content="Vim/6.2">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#ffffff" text="#000000">
<pre>
<font color="#0000ff">// Copyright (c) 2004 David Muse</font>
<font color="#0000ff">// See the COPYING file for more information.</font>

<font color="#a520f7">#ifndef RUDIMENTS_CRYPT_H</font>
<font color="#a520f7">#define RUDIMENTS_CRYPT_H</font>

<font color="#a520f7">#include </font><font color="#ff00ff">&lt;rudiments/private/cryptincludes.h&gt;</font>

<font color="#0000ff">// The crypt class provides a method that is useful for password encryption.</font>

<font color="#298a52"><b>class</b></font> crypt {
        <font color="#a52829"><b>public</b></font>:
                <font color="#298a52"><b>static</b></font> <font color="#298a52"><b>char</b></font>     *encrypt(<font color="#298a52"><b>const</b></font> <font color="#298a52"><b>char</b></font> *password,
                                                <font color="#298a52"><b>const</b></font> <font color="#298a52"><b>char</b></font> *salt);
                                <font color="#0000ff">// Encrypts &quot;password&quot; using the des algorithm</font>
                                <font color="#0000ff">// and &quot;salt&quot; (which should be a 2 character</font>
                                <font color="#0000ff">// string from the set [a-zA-Z0-9./].</font>
                                <font color="#0000ff">//</font>
                                <font color="#0000ff">// Returns the encrypted password on success</font>
                                <font color="#0000ff">// or NULL on failure.</font>
                                <font color="#0000ff">//</font>
                                <font color="#0000ff">// Note that this method allocates a buffer</font>
                                <font color="#0000ff">// internally and returns it.  The calling</font>
                                <font color="#0000ff">// program must deallocate this buffer.</font>

<font color="#a520f7">#ifdef RUDIMENTS_HAS_THREADS</font>
                <font color="#298a52"><b>static</b></font>  <font color="#298a52"><b>bool</b></font>    needsMutex();
                        <font color="#0000ff">// If your system doesn't support crypt_r() then this</font>
                        <font color="#0000ff">// class needs a mutex to assure thread safety.</font>
                        <font color="#0000ff">//</font>
                        <font color="#0000ff">// This method returns true if this class needs a mutex</font>
                        <font color="#0000ff">// to operate safely in a threaded environment and false</font>
                        <font color="#0000ff">// otherwise.</font>
                <font color="#298a52"><b>static</b></font>  <font color="#298a52"><b>void</b></font>    setMutex(pthread_mutex_t *mutex);
                        <font color="#0000ff">// Allows you to supply a mutex is the class needs it.</font>
                        <font color="#0000ff">// If your application is not multithreaded, then</font>
                        <font color="#0000ff">// there is no need to supply a mutex.</font>
<font color="#a520f7">#endif</font>

<font color="#a520f7">        #include </font><font color="#ff00ff">&lt;rudiments/private/crypt.h&gt;</font>
};

<font color="#a520f7">#endif</font>
</pre>
</body>
</html>