Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

hash_final(3) [php man page]

HASH_FINAL(3)								 1							     HASH_FINAL(3)

hash_final - Finalize an incremental hash and return resulting digest

SYNOPSIS
string hash_final (resource $context, [bool $raw_output = false]) DESCRIPTION
PARAMETERS
o $context - Hashing context returned by hash_init(3). o $raw_output - When set to TRUE, outputs raw binary data. FALSE outputs lowercase hexits. RETURN VALUES
Returns a string containing the calculated message digest as lowercase hexits unless $raw_output is set to true in which case the raw binary representation of the message digest is returned. EXAMPLES
Example #1 hash_final(3) example <?php $ctx = hash_init('sha1'); hash_update($ctx, 'The quick brown fox jumped over the lazy dog.'); echo hash_final($ctx); ?> The above example will output: c0854fb9fb03c41cce3802cb0d220529e6eef94e SEE ALSO
hash_init(3), hash_update(3), hash_update_stream(3), hash_update_file(3). PHP Documentation Group HASH_FINAL(3)

Check Out this Related Man Page

HASH_HMAC(3)								 1							      HASH_HMAC(3)

hash_hmac - Generate a keyed hash value using the HMAC method

SYNOPSIS
string hash_hmac (string $algo, string $data, string $key, [bool $raw_output = false]) DESCRIPTION
PARAMETERS
o $algo - Name of selected hashing algorithm (i.e. "md5", "sha256", "haval160,4", etc..) See hash_algos(3) for a list of supported algo- rithms. o $data - Message to be hashed. o $key - Shared secret key used for generating the HMAC variant of the message digest. o $raw_output - When set to TRUE, outputs raw binary data. FALSE outputs lowercase hexits. RETURN VALUES
Returns a string containing the calculated message digest as lowercase hexits unless $raw_output is set to true in which case the raw binary representation of the message digest is returned. Returns FALSE when $algo is unknown. EXAMPLES
Example #1 hash_hmac(3) example <?php echo hash_hmac('ripemd160', 'The quick brown fox jumped over the lazy dog.', 'secret'); ?> The above example will output: b8e7ae12510bdfb1812e463a7f086122cf37e4f7 SEE ALSO
hash(3), hash_algos(3), hash_init(3), hash_hmac_file(3). PHP Documentation Group HASH_HMAC(3)
Man Page

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Checking for the presence of a string within another string

How to check if a string in contained in another string ? Like Whether the String "brown" is contained in "A quick brown fox jumps over a lazy the dog" (1 Reply)
Discussion started by: hidnana
1 Replies

2. Shell Programming and Scripting

put the contents of this file into a variable with multiple lines

I have a file that contains the following lines the brown quick fox jumped over the white laze dog 0123456789 I wanted to put the contents of this file into a variable so I used this code: VAR_LIST=`cat $2` where $2 is the file name passed as an argument to the script If I... (3 Replies)
Discussion started by: Nomaad
3 Replies

3. Shell Programming and Scripting

excluding two or more groups of strings from printing

sample text: 001 the quick brown fox jumps 987 over a lazy dog 002 the quick brown fox jumps 999 over a lazy dog 003 the quick brown cow jumps 888 over a lazy dog 004 the quick brown fox jumps 777 over a lazy dog 005 the quick brown fox jumps 666 over a lazy cat i want to do something... (1 Reply)
Discussion started by: marcpascual
1 Replies

4. UNIX for Dummies Questions & Answers

What in the world does $$ mean?

If I type "echo $$" in to the command line it outputs some random number but it outputs the same one every time. What is this? (7 Replies)
Discussion started by: weexpectedthis
7 Replies

5. Shell Programming and Scripting

Combined Two CSV Lines

I have two CSV lines, I.e.: Line 1 = the,quick,brown,fox, ,jumps, ,the, ,dog Line 2 = the,quick,brown,fox, , ,over, ,lazy,dog Literally, columns missing from line 1 exist in line 2. Any suggestions on quick ways to combined these two lines into one line: New line:... (2 Replies)
Discussion started by: msf004
2 Replies

6. Shell Programming and Scripting

Find redundant text in a file

I want to find which pattern or strings have occurred more than one time so that I can remove unnecessary redundancy. For example: If I have the sentence: A quick brown brown fox jumps jumps jumps over the lazy dog in a file, then I want to know that 1. the word "brown" has... (7 Replies)
Discussion started by: hbar
7 Replies

7. Shell Programming and Scripting

UNIX Pipelines

What if you want to have just one single pipeline that will create a file (let's say x) and we want all the content from another file (we can call it y), one word per line? (7 Replies)
Discussion started by: sarahahah
7 Replies