PHP Classes

File: _interfaces/addInterfaces.php

Recommend this page to a friend!
  Classes of Marius Zadara   Message Digest   _interfaces/addInterfaces.php   Download  
File: _interfaces/addInterfaces.php
Role: Auxiliary script
Content type: text/plain
Description: Interfaces importer
Class: Message Digest
Generate message digests with hashing algorithms
Author: By
Last change:
Date: 15 years ago
Size: 490 bytes
 

Contents

Class file image Download
<?php

/**
 * Interfaces loader.
 * This file will load all the interfaces required by the application.
 *
 * @author Marius Zadara <marius@zadara.org>
 * @category org.zadara.marius.messagedigester.interfaces
 * @copyright (C) 2008, Marius Zadara <marius@zadara.org>
 * @license GNU GPL
 * @package org.zadara.marius.messagedigester
 */

// hash algorithm interface
require 'IHashAlgorithm.intf.php';

// message digest interface
require 'IMessageDigest.intf.php';

?>