All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.cms.test.CMSTestSetup Maven / Gradle / Ivy

The newest version!
// Copyright (c) 2005 The Legion Of The Bouncy Castle (http://www.bouncycastle.org)
package org.bouncycastle.cms.test;

import junit.extensions.TestSetup;
import junit.framework.Test;

import java.security.Security;

class CMSTestSetup extends TestSetup
{
    public CMSTestSetup(Test test)
    {
        super(test);
    }

    protected void setUp()
    {
        Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
    }

    protected void tearDown()
    {
        Security.removeProvider("BC");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy