Searched refs:md (Results 151 - 175 of 578) sorted by relevance

1234567891011>>

/freebsd-11-stable/crypto/openssl/crypto/rsa/
H A Drsa_oaep.c42 const EVP_MD *md, const EVP_MD *mgf1md)
49 if (md == NULL)
50 md = EVP_sha1();
52 mgf1md = md;
54 mdlen = EVP_MD_size(md);
72 if (!EVP_Digest((void *)param, plen, db, NULL, md, NULL))
120 int plen, const EVP_MD *md,
134 if (md == NULL)
135 md = EVP_sha1();
137 mgf1md = md;
39 RSA_padding_add_PKCS1_OAEP_mgf1(unsigned char *to, int tlen, const unsigned char *from, int flen, const unsigned char *param, int plen, const EVP_MD *md, const EVP_MD *mgf1md) argument
117 RSA_padding_check_PKCS1_OAEP_mgf1(unsigned char *to, int tlen, const unsigned char *from, int flen, int num, const unsigned char *param, int plen, const EVP_MD *md, const EVP_MD *mgf1md) argument
282 unsigned char md[EVP_MAX_MD_SIZE]; local
[all...]
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha256.c83 SHA256_CTX head, tail, md; member in struct:__anon4589
132 key->md = key->head;
260 memcpy(blocks[0].c, key->md.data, 8);
269 ctx->A[i] = key->md.h[0];
270 ctx->B[i] = key->md.h[1];
271 ctx->C[i] = key->md.h[2];
272 ctx->D[i] = key->md.h[3];
273 ctx->E[i] = key->md.h[4];
274 ctx->F[i] = key->md.h[5];
275 ctx->G[i] = key->md
[all...]
H A De_aes_cbc_hmac_sha1.c83 SHA_CTX head, tail, md; member in struct:__anon4581
135 key->md = key->head;
263 memcpy(blocks[0].c, key->md.data, 8);
272 ctx->A[i] = key->md.h0;
273 ctx->B[i] = key->md.h1;
274 ctx->C[i] = key->md.h2;
275 ctx->D[i] = key->md.h3;
276 ctx->E[i] = key->md.h4;
283 blocks[i].c[j] = ((u8 *)key->md.data)[j] + carry;
287 blocks[i].c[8] = ((u8 *)key->md
[all...]
H A Dm_sha1.c81 static int final(EVP_MD_CTX *ctx, unsigned char *md) argument
83 return SHA1_Final(md, ctx->md_data);
128 static int final256(EVP_MD_CTX *ctx, unsigned char *md) argument
130 return SHA256_Final(md, ctx->md_data);
191 static int final512(EVP_MD_CTX *ctx, unsigned char *md) argument
193 return SHA512_Final(md, ctx->md_data);
H A Dm_dss.c80 static int final(EVP_MD_CTX *ctx, unsigned char *md) argument
82 return SHA1_Final(md, ctx->md_data);
H A Dm_dss1.c81 static int final(EVP_MD_CTX *ctx, unsigned char *md) argument
83 return SHA1_Final(md, ctx->md_data);
H A Dm_md2.c82 static int final(EVP_MD_CTX *ctx, unsigned char *md) argument
84 return MD2_Final(md, ctx->md_data);
H A Dm_md4.c84 static int final(EVP_MD_CTX *ctx, unsigned char *md) argument
86 return MD4_Final(md, ctx->md_data);
H A Dm_md5.c83 static int final(EVP_MD_CTX *ctx, unsigned char *md) argument
85 return MD5_Final(md, ctx->md_data);
H A Dm_mdc2.c84 static int final(EVP_MD_CTX *ctx, unsigned char *md) argument
86 return MDC2_Final(md, ctx->md_data);
H A Dm_ripemd.c83 static int final(EVP_MD_CTX *ctx, unsigned char *md) argument
85 return RIPEMD160_Final(md, ctx->md_data);
H A Dm_sha.c82 static int final(EVP_MD_CTX *ctx, unsigned char *md) argument
84 return SHA_Final(md, ctx->md_data);
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_macinfo.c189 Dwarf_Macro_Details *md; local
200 md = &dbg->dbgp_mdlist[i];
201 md->dmd_offset = ds->ds_size;
202 RCHECK(WRITE_VALUE(md->dmd_type, 1));
203 switch (md->dmd_type) {
207 RCHECK(WRITE_ULEB128(md->dmd_lineno));
208 assert(md->dmd_macro != NULL);
209 RCHECK(WRITE_STRING(md->dmd_macro));
212 RCHECK(WRITE_ULEB128(md->dmd_lineno));
213 RCHECK(WRITE_ULEB128(md
238 Dwarf_Macro_Details *md; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dopts-common.c54 size_t mn, mx, md, opt_len; local
65 md = (mn + mx) / 2;
66 opt_len = cl_options[md].opt_len;
67 comp = strncmp (input, cl_options[md].opt_text + 1, opt_len);
70 mx = md;
72 mn = md;
/freebsd-11-stable/tools/tools/cd2dvd/
H A Dcd2dvd.sh42 md=""
81 md=`mdconfig -a -t vnode -f ${_img}` || exit 1
82 mount_cd9660 /dev/${md} ${_mnt} || exit 1
122 umount /dev/${md} || exit 1
123 mdconfig -d -u "${md}" || exit 1
152 # $2 md
237 md=""
240 trap 'echo ""; echo "Cleaning up"; clearmount "${tmpdirin}" ""; clearmd "${system}" "${md}" ""; rm -rf "${tmpdirin}" "${tmpdirout}";' 0 1 2 3 15
/freebsd-11-stable/crypto/openssl/crypto/sha/
H A Dsha256t.c65 unsigned char md[SHA256_DIGEST_LENGTH]; local
71 EVP_Digest("abc", 3, md, NULL, EVP_sha256(), NULL);
72 if (memcmp(md, app_b1, sizeof(app_b1))) {
81 "ijkljklm" "klmnlmno" "mnopnopq", 56, md, NULL, EVP_sha256(),
83 if (memcmp(md, app_b2, sizeof(app_b2))) {
100 EVP_DigestFinal_ex(&evp, md, NULL);
103 if (memcmp(md, app_b3, sizeof(app_b3))) {
116 EVP_Digest("abc", 3, md, NULL, EVP_sha224(), NULL);
117 if (memcmp(md, addenum_1, sizeof(addenum_1))) {
126 "ijkljklm" "klmnlmno" "mnopnopq", 56, md, NUL
[all...]
/freebsd-11-stable/sbin/geom/class/multipath/
H A Dgeom_multipath.c151 struct g_multipath_metadata md; local
201 strlcpy(md.md_magic, G_MULTIPATH_MAGIC, sizeof(md.md_magic));
202 md.md_version = G_MULTIPATH_VERSION;
204 strlcpy(md.md_name, mpname, sizeof(md.md_name));
205 md.md_size = disksize;
206 md.md_sectorsize = secsize;
217 strlcpy(md.md_uuid, ptr, sizeof (md
[all...]
/freebsd-11-stable/crypto/openssl/crypto/dsa/
H A Ddsa_pmeth.c78 const EVP_MD *md; /* MD for the signature */ member in struct:__anon3802
90 dctx->md = NULL;
109 dctx->md = sctx->md;
129 if (dctx->md)
130 type = EVP_MD_type(dctx->md);
150 if (dctx->md)
151 type = EVP_MD_type(dctx->md);
197 dctx->md = p2;
201 *(const EVP_MD **)p2 = dctx->md;
234 const EVP_MD *md = EVP_get_digestbyname(value); local
[all...]
/freebsd-11-stable/sys/geom/multipath/
H A Dg_multipath.c71 struct g_multipath_metadata *md);
73 struct g_multipath_metadata *md);
255 struct g_multipath_metadata md; local
291 error = g_multipath_read_metadata(cp, &md);
293 (strcmp(md.md_magic, G_MULTIPATH_MAGIC) != 0) ||
294 (memcmp(md.md_uuid, sc->sc_uuid, sizeof(sc->sc_uuid)) != 0) ||
295 (strcmp(md.md_name, sc->sc_name) != 0) ||
296 (md.md_size != 0 && md.md_size != size) ||
297 (md
509 g_multipath_create(struct g_class *mp, struct g_multipath_metadata *md) argument
742 g_multipath_read_metadata(struct g_consumer *cp, struct g_multipath_metadata *md) argument
767 g_multipath_write_metadata(struct g_consumer *cp, struct g_multipath_metadata *md) argument
793 struct g_multipath_metadata md; local
1083 struct g_multipath_metadata md; local
1148 struct g_multipath_metadata md; local
[all...]
/freebsd-11-stable/usr.sbin/bsdinstall/partedit/
H A Dgpart_ops.c517 struct partition_metadata *md; local
604 TAILQ_FOREACH(md, &part_metadata, metadata) {
605 if (md->name != NULL && strcmp(md->name, pp->lg_name) == 0) {
606 if (md->fstab != NULL)
607 items[2].text = md->fstab->fs_file;
667 struct partition_metadata *md; local
672 md = get_part_metadata(name, 1);
675 if (md->newfs != NULL) {
676 free(md
1101 struct partition_metadata *md; local
1327 struct partition_metadata *md; local
[all...]
/freebsd-11-stable/crypto/openssl/crypto/md4/
H A Dmd4.h112 int MD4_Final(unsigned char *md, MD4_CTX *c);
113 unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md);
/freebsd-11-stable/crypto/openssl/crypto/md5/
H A Dmd5.h112 int MD5_Final(unsigned char *md, MD5_CTX *c);
113 unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md);
/freebsd-11-stable/crypto/openssl/crypto/ripemd/
H A Dripemd.h98 int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c);
99 unsigned char *RIPEMD160(const unsigned char *d, size_t n, unsigned char *md);
/freebsd-11-stable/usr.bin/sort/
H A DMakefile16 LIBADD= pthread md
19 LIBADD= md
/freebsd-11-stable/lib/libc/tests/string/
H A DMakefile33 LIBADD.memchr_test+= md
34 LIBADD.memcpy_test+= md

Completed in 306 milliseconds

1234567891011>>