Name

sha1 — calculate SHA1 sum of input

DESCRIPTION

The filter outputs SHA1 sum for the input text.

EXAMPLES

Example: Filter example

[filter sha1][/filter]
[filter sha1]One[/filter]
[filter sha1]Two[/filter]
[filter sha1]MyPassword[/filter]
[filter sha1]Very long string[/filter]

          

NOTES

The sha1 filter uses the Digest::SHA1 module for the SHA1 calculation.

AVAILABILITY

sha1 is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: code/Filter/sha1.filter
Lines: 15


# Copyright 2007-2009 Interchange Development Group and others
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version. See the LICENSE file for details.

CodeDef sha1 Filter
CodeDef sha1 Description sha1 sum
CodeDef sha1 Routine <<EOR

sub {
return Vend::Util::sha1_hex($_[0]);
}
EOR

AUTHORS

Jon Jensen

SEE ALSO

md5(7ic)

DocBook! Interchange!