Home
last modified time | relevance | path

Searched refs:md5 (Results 1 – 25 of 51) sorted by relevance

123

/dragonfly/sbin/md5/
H A DMakefile4 PROG= md5
6 LINKS= ${BINDIR}/md5 ${BINDIR}/rmd160 \
7 ${BINDIR}/md5 ${BINDIR}/sha1 \
8 ${BINDIR}/md5 ${BINDIR}/sha256 \
9 ${BINDIR}/md5 ${BINDIR}/sha512
11 MLINKS= md5.1 rmd160.1 \
12 md5.1 sha1.1 \
13 md5.1 sha256.1 \
14 md5.1 sha512.1
/dragonfly/sys/netproto/smb/
H A Dsmb_crypt.c207 MD5_CTX md5; in smb_rq_sign() local
251 MD5Init(&md5); in smb_rq_sign()
252 MD5Update(&md5, vcp->vc_mackey, vcp->vc_mackeylen); in smb_rq_sign()
254 MD5Update(&md5, mtod(mb, void *), mb->m_len); in smb_rq_sign()
255 MD5Final(digest, &md5); in smb_rq_sign()
270 MD5_CTX md5; in smb_rq_verify() local
290 MD5Init(&md5); in smb_rq_verify()
292 MD5Update(&md5, mtod(mb, void *), 14); in smb_rq_verify()
295 MD5Update(&md5, sigbuf, 8); in smb_rq_verify()
298 MD5Update(&md5, mtod(mb, void *), mb->m_len); in smb_rq_verify()
[all …]
/dragonfly/contrib/wpa_supplicant/src/crypto/
H A Dcrypto_internal.c22 struct MD5Context md5; member
55 MD5Init(&ctx->u.md5); in crypto_hash_init()
77 MD5Init(&ctx->u.md5); in crypto_hash_init()
79 MD5Final(tk, &ctx->u.md5); in crypto_hash_init()
91 MD5Init(&ctx->u.md5); in crypto_hash_init()
151 MD5Update(&ctx->u.md5, data, len); in crypto_hash_update()
200 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()
252 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()
259 MD5Init(&ctx->u.md5); in crypto_hash_finish()
261 MD5Update(&ctx->u.md5, mac, 16); in crypto_hash_finish()
[all …]
/dragonfly/crypto/libressl/crypto/evp/
H A Dm_md5_sha1.c30 MD5_CTX md5; member
39 if (!MD5_Init(&mdctx->md5)) in md5_sha1_init()
52 if (!MD5_Update(&mdctx->md5, data, count)) in md5_sha1_update()
65 if (!MD5_Final(out, &mdctx->md5)) in md5_sha1_final()
/dragonfly/test/stress/stress2/misc/
H A Dsnap3.sh40 mount | grep "/mnt" | grep md5 > /dev/null && umount /mnt
41 mdconfig -l | grep -q md5 && mdconfig -d -u 5
49 mount -o ro /dev/md5 /mnt
H A Dmd3.sh43 newfs -U md5${part} > /dev/null
44 mount /dev/md5${part} /mnt
H A Dmac_chkexec.sh50 setfmac chkexec/md5:`md5 -q $mntpoint/ls` $mntpoint/ls
/dragonfly/tools/tools/hammer-backup/
H A DREADME21 filename,rsv01,rsv02,backup type,shared uuid,last TID,md5 hash
28 md5 hash : For restoring purposes
71 full: 20140308001146_pfs_var.xz endtid: 0x000000011db6dc20 md5: 303ee864f4a747d9da7d556e83b05de5
86 full: 20140308001146_pfs_var.xz endtid: 0x000000011db6dc20 md5: 303ee864f4a747d9da7d556e83b05de5
87 … incr: 20140308002450_pfs_var.xz endtid: 0x000000011db6e440 md5: 7a7c2799b880a293f2c8270c6a9b22aa
97 full: 20140308001146_pfs_var.xz endtid: 0x000000011db6dc20 md5: 303ee864f4a747d9da7d556e83b05de5
98 … incr: 20140308002450_pfs_var.xz endtid: 0x000000011db6e440 md5: 7a7c2799b880a293f2c8270c6a9b22aa
H A Dhammer-backup.sh159 local md5sum=$(md5 -q ${output_file} 2> /dev/null)
375 fileck=$(md5 -q ${fname} 2> /dev/null)
/dragonfly/contrib/lvm2/dist/test/
H A Dt-mirror-basic.sh105 md5sum $1 > md5.$(basename $1)
110 md5sum $1 > md5.tmp && cmp md5.$(basename $1) md5.tmp
H A Dt-mirror-lvconvert.sh71 md5sum $1 > md5.$(basename $1)
76 md5sum $1 > md5.tmp && cmp md5.$(basename $1) md5.tmp
H A Dt-pvmove-basic.sh39 md5sum $1 > md5.$(basename $1)
43 md5sum $1 > md5.tmp && cmp md5.$(basename $1) md5.tmp
/dragonfly/usr.sbin/ppp/libradius/
H A Dradlib.c105 unsigned char md5[MD5_DIGEST_LENGTH]; in insert_scrambled_password() local
113 memcpy(md5, &h->out[POS_AUTH], LEN_AUTH); in insert_scrambled_password()
120 MD5Update(&ctx, md5, 16); in insert_scrambled_password()
121 MD5Final(md5, &ctx); in insert_scrambled_password()
131 md5[i] ^= h->pass[pos + i]; in insert_scrambled_password()
191 unsigned char md5[MD5_DIGEST_LENGTH]; in is_valid_response() local
222 MD5Final(md5, &ctx); in is_valid_response()
223 if (memcmp(&h->in[POS_AUTH], md5, sizeof md5) != 0) in is_valid_response()
276 unsigned char md5[MD5_DIGEST_LENGTH]; in is_valid_request() local
303 MD5Final(md5, &ctx); in is_valid_request()
[all …]
/dragonfly/crypto/libressl/ssl/
H A Ds3_cbc.c295 MD5_CTX *md5 = ctx; in tls1_md5_final_raw() local
296 u32toLE(md5->A, md_out); in tls1_md5_final_raw()
297 u32toLE(md5->B, md_out); in tls1_md5_final_raw()
298 u32toLE(md5->C, md_out); in tls1_md5_final_raw()
299 u32toLE(md5->D, md_out); in tls1_md5_final_raw()
/dragonfly/tools/snapshots/
H A Ddobuild95 md5 $basename.iso.bz2 >> CHECKSUM.MD5
96 md5 $basename.img.bz2 >> CHECKSUM.MD5
101 md5 $basename.boot.tar.bz2 >> CHECKSUM.MD5
/dragonfly/crypto/libressl/
H A DREADME.DELETED112 crypto/md5/md5-macosx-x86_64.S
113 crypto/md5/md5-masm-x86_64.S
114 crypto/md5/md5-mingw64-x86_64.S
129 crypto/rc4/rc4-md5-macosx-x86_64.S
130 crypto/rc4/rc4-md5-masm-x86_64.S
131 crypto/rc4/rc4-md5-mingw64-x86_64.S
/dragonfly/bin/cpdup/
H A DMakefile9 SRCS+= md5.c
/dragonfly/gnu/usr.bin/cc47/cc_tools/libiberty/
H A DMakefile7 md5.c obstack.c partition.c pex-unix.c physmem.c safe-ctype.c \
/dragonfly/lib/libcrypt/
H A DMakefile9 SRCS= blowfish.c crypt.c crypt-blowfish.c crypt-des.c crypt-md5.c \
/dragonfly/usr.bin/at/
H A DLEGAL10 md5 checksum is
/dragonfly/gnu/usr.bin/cc80/cc_tools/libiberty/
H A DMakefile10 md5.c obstack.c partition.c pex-unix.c physmem.c safe-ctype.c \
/dragonfly/libexec/atrun/
H A DLEGAL13 md5 checksum is
/dragonfly/sbin/
H A DMakefile47 md5 \
/dragonfly/tools/tools/locale/tools/
H A Dfinalize40 (cd ${old} && md5 -r ${keep} | sort) > ${TEMP2}
/dragonfly/initrd/rescue.libcrypto/
H A DMakefile40 md5 \

123