blob: f05d8cbfbf68074ffb98a28e5c9b0db43d83aa3d (
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
30
31
32
33
34
35
36
37
38
39
40
|
> badCrypt: no
>
> # Defined-routine, and default, crypt mehods. These fail on FreeBSD because
> # the crypt() call does something different to that on Linux. The output
> # is therefore different, and the compare fails.
>
> mySecret: yes
> mySecret: no
> mySecret: yes
> mySecret: no
>
> crypt16: yes
> crypt16: yes
> crypt16: no
> crypt16: yes
>
>
> # Defined-algo methods.
>
> md5: yes
> md5: yes
> md5: no
> md5: yes
> md5: no
> md5: no
>
> sha1: yes
> sha1: yes
> sha1: yes
> sha1: no
>
>
> # Combinations. These fail on FreeBSD as above.
>
> y: Y
> y: Y
> y: Y
> n: N
> n: N
>
|