Sponsored Content
Full Discussion: Digest MD5
Top Forums UNIX for Advanced & Expert Users Digest MD5 Post 37786 by tamemi on Sunday 29th of June 2003 06:24:46 AM
Old 06-29-2003
I was checking the google web site and i found something realted to Digest MD5 .

http://www.icdevgroup.org/archive/in.../msg11889.html

so there was an ansewer that say :

GDBM_File GSAR perl-5.6.1.tar.gz 5.7M 09 Apr 2001
> is this the right file?
> SO, i have to reinstall Perl to get GDBM?
> can you clear me on that, thanks! Smilie
>
No, you already have GDBM_File, now you need to find the GDBM library
source code itself (which is not related to perl), you can find it at
http://www.gnu.org/software/gdbm/gdbm.html

can you help me please in it ,,, what shall i do exactly ???
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Md5

Does anyone know a scipt that includes MD5. I need to run a script that includes MD5 encryption. Thanks (1 Reply)
Discussion started by: duncang3
1 Replies

2. Linux

Need Help: MD5

I am trying to compare two identical files by using md5 command, but cant get the right command parameters Please help me with any examples. All I want is to know how to compare two identical files which are residing on two different machines in my local network, for example: Host_A -... (6 Replies)
Discussion started by: greenja
6 Replies

3. Shell Programming and Scripting

Help with md5 in PERL

I am a newbie in programming in Perl. My problem is that this unix command is embedded in Perl but it gives an empty output. Here's the code: $temp = `md5 "../Directory String/..." | awk {'print $NF'} > "../Directory/file.txt"`; The output file should contain the md5 hash value of the... (2 Replies)
Discussion started by: ianebaj
2 Replies

4. UNIX for Dummies Questions & Answers

Different MD5 value when using 'digest' command

Hi guys, I need to anonymise some data; Some of it in an Oracle database and some in text files. I'm using the 'digest' command on Solaris 10 OS and an Oracle function to encode the data in the database. However, as a test, when i try to encode the same string in the dataabse ans OS, I get... (4 Replies)
Discussion started by: zaff
4 Replies

5. Shell Programming and Scripting

Create md5 sums and archive the resulting md5 files

Hello everyone, I am looking to basically creating md5sum files for all iso files in a directory and archive the resulting md5 files into a single archive in that very same directory. I worked out a clumsy solution such as: #find files for which md5sum are to be created and store the... (1 Reply)
Discussion started by: SurfTranquille
1 Replies

6. Shell Programming and Scripting

Help with MD5 script

Hi, I tried to write script, which would be able to generate MD5 sums into txt file.. But It won't work.. (I've been trying to fix that over 4 hours, but nothing helps) Here it is #!/bin/bash FILE="nothing1" POST="nothing2" I=1 while do FILE=`ls -ltR | grep "^-" | tr -s "... (1 Reply)
Discussion started by: TheBarnacle
1 Replies

7. Solaris

md5 checksum what does it do

Hello good people, I came across md5 checksum. Can anyone please explain to me what it does and if possible an example of how to use it? Thank you very much (1 Reply)
Discussion started by: cjashu
1 Replies

8. Shell Programming and Scripting

Using Wget with Digest Authentication

I’m trying to use wget 1.13.4 from a command line to access a web page using Digest Authentication on a Tomcat server, and I keep getting HTTP/1.1 401 Unauthorized response. Below is my code and the response. Any suggestions would be appreciated. wget --debug --server-response --user-agent=""... (5 Replies)
Discussion started by: mtarkowski
5 Replies

9. Red Hat

Digest::md5 needed for RHEL 6.4

Hey, I've got a package that requires 'Digest:md5' to be installed but I can't locate a source for it from Redhat. Poking around on the internet I found some stuff that seemed to be for RHEL 6.4 but when I had yum try a local install it gives me this error. Transaction Check Error: file... (3 Replies)
Discussion started by: DustinT
3 Replies

10. Shell Programming and Scripting

How to reverse the b64 format(encoded b64(b64(md5($pass)))) into md5 hash format?

I have about 1500 rows (encoded b64(b64(md5($pass))) algorythm) in a file. I would like reverse the b64 into md5 hash format. How could I do that from command line? So I need only the correct md5 hash formats. These row format: 4G5qc2WQzGES6QkWAUgl5w P9tKxonBOg3ymr8vOBLnDA... (1 Reply)
Discussion started by: freeroute
1 Replies
MAILDROPGDBM(7) 					      Double Precision, Inc.						   MAILDROPGDBM(7)

NAME
maildropgdbm - GDBM/DB support in maildrop SYNOPSIS
gdbmopen(filename, mode) gdbmclose gdbmfetch(key [,default]) gdbmstore(key,value) DESCRIPTION
The gdbm family of functions provides access to the GDBM library - a library of routines that manage simple database files. The library provides a way of quickly storing and looking up key/data pairs. GDBM support in maildrop is optional, and may not be available to you. GDBM support in maildrop can optionally be implemented using the DB library. This option is selected by the system administrator. If this is the case, these functions still work exactly as described below, except that they will operate on DB hash files, instead of GDBM files. To see whether GDBM or DB support is used, run the command "maildrop -v". GDBM support is minimal, and simplistic. A filter file may have only one gdbm file open at the same time. However, the filter file can close the current gdbm file, and open another one. If another filter file is included using the include statement, the included filter file may open its own, separate, gdbm file. A GDBM file contains a list of key/value pairs. All keys in the GDBM file are unique. After storing an arbitrary key/value pair in the GDBM file, the value associated with the given key can be quickly located and retrieved. gdbmclose - close gdbm file gdbmclose This function closes the current GDBM file. gdbmfetch - retrieve data gdbmfetch (key [, options] [, default]) This function retrieves the data for the given key. key is the key to retrieve. The gdbmfetch function returns the data associated with this key. If the key does not exist in the GDBM file, gdbmfetch returns the default argument. If the default argument is not specified, gdbmfetch returns empty text. Please note that the default argument is not actually evaluated unless the key does not exist in the GDBM file. The options argument specifies additional maildrop value-added features. The following functionality is not available in the GDBM library, but is rather provided by maildrop. If the options argument is set to "D", and the key could not be found in the GDBM database, and the key is of the form "user@domain", maildrop will then attempt to look up the key "user@". If that key is also not found, maildrop finally looks up the key "domain". If "domain" is also not found, and domain is of the form "a.b.c.d.tld" (with variable number of period-separated sections), maildrop then attempts to look up the key "b.c.d.tld". If that key is not found, maildrop tries "c.d.tld", and so on, until a key is found, or there are no more subdomains to remove, at which point gdbmfetch will return either the default argument, or empty text. If the options argument is set to "D", and the key could not be found in the GDBM database, and the key is of the form "a.b.c.d.tld" (with variable number of period-separated sections), maildrop will also attempt to look up keys for successive higher-level domains in the GDBM database. Note GDBM databases are case sensitive. Make sure that the GDBM database is created using lowercase letters only, and use the tolower[1] function to convert the key to lowercase. If the options argument is "I", and the key is not in the GDBM database, and the key is of the form "w.x.y.z" (with variable number of period-separated sections), maildrop then tries to look up the key "w.x.y", then "w.x", until a key is found, or there are no more sections to remove. Use this feature to look up IP-address based GDBM lists. Note These features are implemented by brute force: if the query doesn't succeed, try again. Take note of potential denial-of-service attacks where key is set to a long text string consisting mostly of periods, which will result in numerous GDBM queries that will take an excessive amount of time to complete. gdbmopen - open gdbm file gdbmopen (file [, mode]) gdbmopen opens the indicated GDBM file. The optional second argument specifies the following: "R" Open this GDBM file for reading. "W" Open this GDBM file for reading and writing. "C" Open this GDBM file for reading and writing. If the GBDM file doesn't exist, create it. "N" Create a new GDBM file. If the file exists, the existing file is deleted. The file is opened for reading and writing. The mode argument defaults to "R" is used. In embedded mode, only "R" is allowed. The GDBM library allows multiple processes to read the same GDBM file at the same time, but it does not allow multiple access when the GDBM file is open for writing. Using flock[2] or dotlock[3] is highly recommended. In delivery mode, maildrop runs from the recipient's home directory. Keep that in mind while specifying the filename. The gdbmopen function returns 0 if the GDBM file was successfully opened, non-zero otherwise. gdbmstore - store data gdbmstore(key, value) key is the key value to store in the GDBM file. value is the value to store. If key already exists in the GDBM file, value replacest the old value. The gdbmstore function is only permitted if the GDBM file is opened for writing. If gdbmopen opened the GDBM file for reading only, gdbmstore will return -1. Otherwise, gdbmstore returns 0. AUTHOR
Sam Varshavchik Author NOTES
1. tolower [set $man.base.url.for.relative.links]/maildropfilter.html#tolower 2. flock [set $man.base.url.for.relative.links]/maildropfilter.html#flock 3. dotlock [set $man.base.url.for.relative.links]/maildropfilter.html#dotlock Courier Mail Server 08/30/2011 MAILDROPGDBM(7)
All times are GMT -4. The time now is 01:27 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy