Clover coverage report - Maven Clover report
Coverage timestamp: Thu Jan 25 2007 11:17:27 IST
file stats: LOC: 26   Methods: 1
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
WizCryptAlgorithms.java - - 0% 0%
coverage
 1    /*
 2    * Algorithms.java
 3    *
 4    * Created on January 21, 2007, 12:19 PM
 5    *
 6    * To change this template, choose Tools | Template Manager
 7    * and open the template in the editor.
 8    */
 9   
 10    package org.wiztools.wizcrypt;
 11   
 12    /**
 13    *
 14    * @author schandran
 15    */
 16    final class WizCryptAlgorithms {
 17   
 18    /** Creates a new instance of Algorithms */
 19  0 private WizCryptAlgorithms() {
 20    }
 21   
 22    public static final String CRYPT_ALGO = "RC4";
 23    public static final String STR_ENCODE = "UTF-8";
 24    public static final String PWD_HASH = "MD5";
 25   
 26    }