1*7c46e6efSAlan Somers /*-
2*7c46e6efSAlan Somers * Copyright (c) 2016 Spectra Logic Corporation
3*7c46e6efSAlan Somers * All rights reserved.
4*7c46e6efSAlan Somers *
5*7c46e6efSAlan Somers * Redistribution and use in source and binary forms, with or without
6*7c46e6efSAlan Somers * modification, are permitted provided that the following conditions
7*7c46e6efSAlan Somers * are met:
8*7c46e6efSAlan Somers * 1. Redistributions of source code must retain the above copyright
9*7c46e6efSAlan Somers * notice, this list of conditions and the following disclaimer.
10*7c46e6efSAlan Somers * 2. Redistributions in binary form must reproduce the above copyright
11*7c46e6efSAlan Somers * notice, this list of conditions and the following disclaimer in the
12*7c46e6efSAlan Somers * documentation and/or other materials provided with the distribution.
13*7c46e6efSAlan Somers *
14*7c46e6efSAlan Somers * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
15*7c46e6efSAlan Somers * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16*7c46e6efSAlan Somers * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17*7c46e6efSAlan Somers * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
18*7c46e6efSAlan Somers * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19*7c46e6efSAlan Somers * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20*7c46e6efSAlan Somers * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21*7c46e6efSAlan Somers * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22*7c46e6efSAlan Somers * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23*7c46e6efSAlan Somers * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24*7c46e6efSAlan Somers * SUCH DAMAGE.
25*7c46e6efSAlan Somers */
26*7c46e6efSAlan Somers
27*7c46e6efSAlan Somers #include <err.h>
28*7c46e6efSAlan Somers #include <stdio.h>
29*7c46e6efSAlan Somers #include <unistd.h>
30*7c46e6efSAlan Somers
main(int argc,char ** argv)31*7c46e6efSAlan Somers int main(int argc, char** argv)
32*7c46e6efSAlan Somers {
33*7c46e6efSAlan Somers char *salt, *pass, *hash;
34*7c46e6efSAlan Somers
35*7c46e6efSAlan Somers if (argc < 3)
36*7c46e6efSAlan Somers errx(1, "Usage: crypt <salt> <password>");
37*7c46e6efSAlan Somers salt = argv[1];
38*7c46e6efSAlan Somers pass = argv[2];
39*7c46e6efSAlan Somers
40*7c46e6efSAlan Somers hash = crypt(pass, salt);
41*7c46e6efSAlan Somers printf("%s", hash);
42*7c46e6efSAlan Somers return (hash == NULL ? 1 : 0);
43*7c46e6efSAlan Somers }
44