Login   Register  
PHP Classes
elePHPant
Icontem

File: _interfaces/addInterfaces.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Marius Zadara  >  Message Digest  >  _interfaces/addInterfaces.php  
File: _interfaces/addInterfaces.php
Role: Auxiliary script
Content type: text/plain
Description: Interfaces importer
Class: Message Digest
Generate message digests with hashing algorithms
 

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';

?>