/* * 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 Vladimir N. Molotkov */ package org.apache.harmony.security.tests.support.cert; import java.security.InvalidKeyException; import java.security.NoSuchAlgorithmException; import java.security.NoSuchProviderException; import java.security.PublicKey; import java.security.SignatureException; import java.security.cert.Certificate; import java.security.cert.CertificateEncodingException; import java.security.cert.CertificateException; /** * Stub class for java.security.cert.Certificate tests */ public class MyCertificate extends Certificate { // MyCertificate encoding private final byte[] encoding; /** * Constructs new object of class MyCertificate * * @param type * @param encoding */ public MyCertificate(String type, byte[] encoding) { super(type); // don't copy to allow null parameter in test this.encoding = encoding; } /** * Returns MyCertificate encoding */ public byte[] getEncoded() throws CertificateEncodingException { // do copy to force NPE in test return encoding.clone(); } /** * Does nothing */ public void verify(PublicKey key) throws CertificateException, NoSuchAlgorithmException, InvalidKeyException, NoSuchProviderException, SignatureException { } /** * Does nothing */ public void verify(PublicKey key, String sigProvider) throws CertificateException, NoSuchAlgorithmException, InvalidKeyException, NoSuchProviderException, SignatureException { } /** * Returns formatted String * describing MyCertificate object */ public String toString() { return "[My test Certificate, type: " + getType() + "]"; } /** * Returns public key (stub) from MyCertificate object */ public PublicKey getPublicKey() { return new PublicKey() { public String getAlgorithm() { return "TEST"; } public byte[] getEncoded() { return new byte[] { (byte) 1, (byte) 2, (byte) 3 }; } public String getFormat() { return "TEST_FORMAT"; } }; } }