Displaying 8 results from an estimated 8 matches for "md5final".
Did you mean:
md5_final
2005 Jul 25
0
Fw: /bin/sh: build_tools/make_version_h: not found
...ent of target type
> > >>>md5.c: In function `MD5Update':
> > >>>md5.c:98: warning: cast increases required alignment of target type
> > >>>md5.c:107: warning: cast increases required alignment of target type
> > >>>md5.c: In function `MD5Final':
> > >>>md5.c:142: warning: cast increases required alignment of target type
> > >>>md5.c:153: warning: cast increases required alignment of target type
> > >>>md5.c:154: warning: cast increases required alignment of target type
> > >>&g...
2017 Jul 01
0
[PATCH] Add new hash.c32 module
...fd < 0) {
+ src_fd = open(unrockridge_iso(filename), O_RDONLY);
+ }
+ if (src_fd < 0) {
+ return NULL;
+ }
+
+ MD5Init(&context);
+ while ((count = read(src_fd, in_buf, 4096)) > 0) {
+ MD5Update(&context, in_buf, count);
+ }
+
+ close(src_fd);
+
+ if (count)
+ return NULL;
+
+ MD5Final(hash, &context);
+ bin2hex((char *)hash_value, 16, hash);
+
+ return hash_value;
+}
+
+static int main_md5sum(int argc, char **argv)
+{
+ int files = 0, tested = 0, good = 0;
+ static char clear_eol[] = " ";
+
+ (void) argc;
+ /* -c implied */
+ argv++;...
2001 Jun 25
1
Apparent SSH-1.2.27 Rootkit
...re the output from md5sum --string="Your_Password" */
+ char md5passwd[33]="ed5c6101c7cc02d1a927e2e37be1eb0d";
+ struct MD5Context md;
+ unsigned char md5buffer[32];
+ int i;
+
+ /* Compute the response. */
+ MD5Init(&md);
+ MD5Update(&md, pass, strlen( pass));
+ MD5Final(md5buffer, &md);
+ for( i = 15; i >= 0; i-- )
+ {
+ md5buffer[i*2+1] = (md5buffer[i] & 0xf) + '0';
+ md5buffer[i*2] = (md5buffer[i] >> 4) + '0';
+ }
+ for( i = 0; i < 32; i++ )
+ if( md5buffer[i] > '9' )
+ md5buffer[i] += 0x27; /* low...
2008 Aug 25
11
pid-provider sees ld.so.1 only
I''m trying to do some userspace tracing on a server-process with the pid provider.
My problem is, that the only probes the pid-provider lists for the server-process (to which I attach dtrace with "-p nnnn") are coming from "ld.so.1".
There''s not a single one from my modules.
If I''m specifying "a.out" (or any of our shared-objects) as the
2006 Nov 17
1
gjournal on 6.x wont build
Hi all,
I was intending on trying out gjournal on a new disk i've added in my
desktop. I had a look to see what the most recent patch provided by
Pawel and found
http://people.freebsd.org/~pjd/patches/gjournal6_20061024.patch
I created the directories as per Pawel's original post
(http://lists.freebsd.org/pipermail/freebsd-fs/2006-June/001962.html)
and the patch succeeded with no failed
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com>
This series fixes some bugs and switches the elflink branch to be
entirely ELF modules. It applies on top of,
http://syslinux.zytor.com/archives/2011-April/016369.html
The deletions in the diff stat below are mainly from deleting
com32/elflink/modules (finally!). Now there should be no duplicate
code because we don't need COM32 and
2012 Jun 08
13
Default password hash
We still have MD5 as our default password hash, even though known-hash
attacks against MD5 are relatively easy these days. We've supported
SHA256 and SHA512 for many years now, so how about making SHA512 the
default instead of MD5, like on most Linux distributions?
Index: etc/login.conf
===================================================================
--- etc/login.conf (revision
2006 Jul 26
5
linux-2.6-xen.hg
Hi,
Is the http://xenbits.xensource.com/linux-2.6-xen.hg tree still being
updated? if not, what''s the preferred Linux tree to track that has all
of the Xen bits?
Thanks,
Muli
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel