1# __init__.py - functions for performing the ISO 7064 algorithms
2#
3# Copyright (C) 2010, 2012 Arthur de Jong
4#
5# This library is free software; you can redistribute it and/or
6# modify it under the terms of the GNU Lesser General Public
7# License as published by the Free Software Foundation; either
8# version 2.1 of the License, or (at your option) any later version.
9#
10# This library is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13# Lesser General Public License for more details.
14#
15# You should have received a copy of the GNU Lesser General Public
16# License along with this library; if not, write to the Free Software
17# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18# 02110-1301 USA
19
20"""Collection of the ISO 7064 algorithms.
21
22This package provides a number of modules for calculation and verification
23of numbers using one of the ISO 7064 algorithms.
24
25Note that these functions were not implemented using the ISO text itself
26because the text is not available for free. These functions were
27implemented based on information on the algorithms found online and some
28reverse engineering. If anyone can provide a legal copy of the ISO/IEC
297064 standard these functions can be validated and perhaps improved.
30"""
31