Searched refs:md5 (Results 51 - 75 of 255) sorted by relevance

1234567891011

/freebsd-12-stable/contrib/netbsd-tests/sbin/resize_ffs/
H A Dcommon.sh10 GOODMD5=$(atf_get_srcdir)/testdata.md5
91 # generated md5 file doesn't need explicit cleanup thanks to ATF
94 (cd mnt/TD$1 && md5 *) > TD$1.md5
95 atf_check diff -u ${GOODMD5} TD$1.md5
/freebsd-12-stable/contrib/ntp/lib/isc/include/isc/
H A Dhmacmd5.h29 #include <isc/md5.h>
/freebsd-12-stable/sys/opencrypto/
H A Dxform_md5.c53 #include <sys/md5.h>
/freebsd-12-stable/tests/sys/geom/class/raid3/
H A D6_test.sh34 if [ `md5 -q ${src}` != `md5 -q ${dst}` ]; then
H A D7_test.sh37 if [ `md5 -q ${src}` != `md5 -q ${dst}` ]; then
H A D8_test.sh33 if [ `md5 -q ${src}` != `md5 -q ${dst}` ]; then
H A D9_test.sh36 if [ `md5 -q ${src}` != `md5 -q ${dst}` ]; then
/freebsd-12-stable/stand/libsa/geli/
H A Dgeliboot_internal.h45 /* Pull in the md5, sha256, and sha512 implementations */
46 #include <sys/md5.h>
/freebsd-12-stable/crypto/openssl/crypto/evp/
H A Dm_md5.c18 # include <openssl/md5.h>
/freebsd-12-stable/crypto/openssl/crypto/md5/
H A Dmd5_one.c12 #include <openssl/md5.h>
/freebsd-12-stable/usr.sbin/ctm/ctm/
H A Dctm_passb.c28 u_char *md5=0,*md5before=0,*trash=0,*name=0,*uid=0,*gid=0,*mode=0; local
53 Delete(md5);
89 GETFIELDCOPY(md5,sep);
131 Delete(md5);
H A Dctm_pass3.c39 u_char *md5=0,*md5before=0,*trash=0,*name=0,*uid=0,*gid=0,*mode=0; local
112 Delete(md5);
148 GETFIELDCOPY(md5,sep);
191 if(strcmp(md5,MD5File(name,md5_1))) {
215 if(strcmp(md5,MD5File(name,md5_1))) {
232 if(strcmp(md5,MD5File(buf,md5_1))) {
284 Delete(md5);
/freebsd-12-stable/contrib/gcc/
H A DFREEBSD-libiberty15 md5.c \
/freebsd-12-stable/tests/sys/geom/class/eli/
H A Dsetkey_test.sh20 hash1=`dd if=rnd bs=512 count=${sectors} status=none | md5`
33 hash2=`dd if=/dev/${md}.eli bs=512 count=${sectors} 2>/dev/null | md5`
46 hash3=`dd if=/dev/${md}.eli bs=512 count=${sectors} 2>/dev/null | md5`
55 hash4=`dd if=/dev/${md}.eli bs=512 count=${sectors} 2>/dev/null | md5`
68 hash5=`dd if=/dev/${md}.eli bs=512 count=${sectors} 2>/dev/null | md5`
81 hash6=`dd if=/dev/${md}.eli bs=512 count=${sectors} 2>/dev/null | md5`
/freebsd-12-stable/usr.sbin/etcupdate/tests/
H A Dconflicts_test.sh79 :passwd_format=md5:
83 :passwd_format=md5:\\
88 :passwd_format=md5:\\
168 sum=`md5 -q $TEST/$1`
186 sum=`md5 -q $CONFLICTS/$1`
250 :passwd_format=md5:\\
/freebsd-12-stable/lib/libmd/
H A DMakefile18 INCS= md4.h md5.h ripemd.h sha.h sha224.h sha256.h sha384.h sha512.h \
23 MAN+= md4.3 md5.3 ripemd.3 sha.3 sha256.3 sha512.3 skein.3
27 MLINKS+=md5.3 MD5Init.3 md5.3 MD5Update.3 md5.3 MD5Final.3
28 MLINKS+=md5.3 MD5End.3 md5.3 MD5File.3 md5.3 MD5FileChunk.3
29 MLINKS+=md5.3 MD5Data.3
83 # Need src tree sys/md5
[all...]
/freebsd-12-stable/crypto/heimdal/lib/gssapi/krb5/
H A Dget_mic.c50 EVP_MD_CTX *md5; local
85 md5 = EVP_MD_CTX_create();
86 EVP_DigestInit_ex(md5, EVP_md5(), NULL);
87 EVP_DigestUpdate(md5, p - 24, 8);
88 EVP_DigestUpdate(md5, message_buffer->value, message_buffer->length);
89 EVP_DigestFinal_ex(md5, hash, NULL);
90 EVP_MD_CTX_destroy(md5);
H A Dverify_mic.c51 EVP_MD_CTX *md5; local
78 md5 = EVP_MD_CTX_create();
79 EVP_DigestInit_ex(md5, EVP_md5(), NULL);
80 EVP_DigestUpdate(md5, p - 24, 8);
81 EVP_DigestUpdate(md5, message_buffer->value, message_buffer->length);
82 EVP_DigestFinal_ex(md5, hash, NULL);
83 EVP_MD_CTX_destroy(md5);
/freebsd-12-stable/sys/kgssapi/krb5/
H A Dkcrypto_des.c37 #include <sys/md5.h>
236 MD5_CTX md5; local
243 MD5Init(&md5);
244 m_apply(inout, skip, inlen, MD5Update_int, &md5);
245 MD5Final(hash, &md5);
252 "des-cbc-md5", /* name */
/freebsd-12-stable/crypto/openssl/ssl/
H A Ds3_cbc.c14 #include <openssl/md5.h>
47 MD5_CTX *md5 = ctx; local
48 u32toLE(md5->A, md_out);
49 u32toLE(md5->B, md_out);
50 u32toLE(md5->C, md_out);
51 u32toLE(md5->D, md_out);
/freebsd-12-stable/contrib/netbsd-tests/crypto/opencrypto/
H A Dt_opencrypto.sh194 atf_test_case md5 cleanup
271 atf_add_test_case md5
/freebsd-12-stable/tools/regression/tmpfs/
H A Dt_vnd75 [ $(md5 mnt/$f | cut -d ' ' -f 4) = \
/freebsd-12-stable/crypto/openssl/crypto/rc4/asm/
H A Drc4-md5-x86_64.pl50 my ($rc4,$md5)=(1,1); # what to generate?
51 my $D="#" if (!$md5); # if set to "#", MD5 is stitched into RC4(),
72 if ($rc4 && !$md5) {
75 } elsif ($md5 && !$rc4) {
148 $D#md5# mov $ctx,%r11 # reassign arguments
152 $D#md5# mov $inp,%r15
154 $ctx="%r11" if ($md5); # reassign arguments
158 $inp="%r15" if ($md5);
159 $inp=$in0 if (!$md5);
172 $code.=<<___ if (!$md5);
[all...]
/freebsd-12-stable/contrib/ntp/include/
H A Dntp_md5.h2 * ntp_md5.h: deal with md5.h headers
22 # include <md5.h>
24 # include "isc/md5.h"
/freebsd-12-stable/contrib/opie/libopie/
H A Dhash.c27 #include <md5.h>

Completed in 416 milliseconds

1234567891011