blob: f98ed397e1ed27c15616c03b78b45376a8bb6bf9 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @author Boris V. Kuznetsov
* @version $Revision$
*/
package org.apache.harmony.security.tests.support;
import java.security.MessageDigest;
/**
* Tests implementation of MessageDigest
*
*/
public class MyMessageDigest1 extends MessageDigest {
public boolean runEngineReset = false;
public boolean runEngineDigest = false;
public boolean runEngineUpdate1 = false;
public boolean runEngineUpdate2 = false;
public MyMessageDigest1() {
super(null);
}
/**
*
* @param algorithm
*/
public MyMessageDigest1(String algorithm) {
super(algorithm);
}
/**
*
*/
public void engineReset() {
runEngineReset = true;
}
/**
*
*/
public byte[] engineDigest() {
runEngineDigest = true;
return new byte[0];
}
/**
*
*/
public void engineUpdate(byte arg0) {
runEngineUpdate1 = true;
}
/**
*
*/
public void engineUpdate(byte[] arg0, int arg1, int arg2) {
runEngineUpdate2 = true;
}
}