当前位置: 首页>>代码示例>>Java>>正文


Java MyExemptionMechanismSpi类代码示例

本文整理汇总了Java中org.apache.harmony.crypto.tests.support.MyExemptionMechanismSpi的典型用法代码示例。如果您正苦于以下问题:Java MyExemptionMechanismSpi类的具体用法?Java MyExemptionMechanismSpi怎么用?Java MyExemptionMechanismSpi使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


MyExemptionMechanismSpi类属于org.apache.harmony.crypto.tests.support包,在下文中一共展示了MyExemptionMechanismSpi类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: test_getName

import org.apache.harmony.crypto.tests.support.MyExemptionMechanismSpi; //导入依赖的package包/类
@TestTargetNew(
    level = TestLevel.COMPLETE,
    notes = "",
    method = "getName",
    args = {}
)
public void test_getName() throws Exception {
    Provider mProv = (new SpiEngUtils()).new MyProvider("MyExMechProvider",
            "Provider for ExemptionMechanism testing",
            srvExemptionMechanism.concat(".").concat(defaultAlg),
            ExemptionMechanismProviderClass);

    ExemptionMechanism em = new ExemptionMechanism(
            new MyExemptionMechanismSpi(), mProv, defaultAlg) {
    };

    Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);

    assertEquals(defaultAlg, em.getName());
}
 
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:21,代码来源:ExemptionMechanismTest.java

示例2: test_getProvider

import org.apache.harmony.crypto.tests.support.MyExemptionMechanismSpi; //导入依赖的package包/类
@TestTargetNew(
    level = TestLevel.COMPLETE,
    notes = "",
    method = "getProvider",
    args = {}
)
public void test_getProvider() throws Exception {
    Provider mProv = (new SpiEngUtils()).new MyProvider("MyExMechProvider",
            "Provider for ExemptionMechanism testing",
            srvExemptionMechanism.concat(".").concat(defaultAlg),
            ExemptionMechanismProviderClass);

    ExemptionMechanism em = new ExemptionMechanism(
            new MyExemptionMechanismSpi(), mProv, defaultAlg) {
    };

    Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);

    assertEquals(mProv, em.getProvider());
}
 
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:21,代码来源:ExemptionMechanismTest.java

示例3: testGenExemptionBlob

import org.apache.harmony.crypto.tests.support.MyExemptionMechanismSpi; //导入依赖的package包/类
/**
 * Test for <code>genExemptionBlob((byte[] output, int outputOffset)</code> method
 */
public void testGenExemptionBlob() throws Exception {

    //Regression for HARMONY-1029
    Provider mProv = (new SpiEngUtils()).new MyProvider("MyExMechProvider",
            "Provider for ExemptionMechanism testing",
            srvExemptionMechanism.concat(".").concat(defaultAlg),
            ExemptionMechanismProviderClass);

    ExemptionMechanism em = new ExemptionMechanism(
            new MyExemptionMechanismSpi(), mProv, defaultAlg) {
    };

    Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);

    em.init(key);
    // ExemptionMechanism doesn't check parameters
    // it is a responsibility of ExemptionMechanismSpi
    em.genExemptionBlob(null, 0);
    em.genExemptionBlob(new byte[0], 0);
    em.genExemptionBlob(new byte[10], -5);

}
 
开发者ID:shannah,项目名称:cn1,代码行数:26,代码来源:ExemptionMechanismTest.java

示例4: testIsCryptoAllowed

import org.apache.harmony.crypto.tests.support.MyExemptionMechanismSpi; //导入依赖的package包/类
/**
 * Test for <code>isCryptoAllowed(Key key)</code> method
 */
@TestTargetNew(
    level = TestLevel.COMPLETE,
    notes = "",
    method = "isCryptoAllowed",
    args = {java.security.Key.class}
)
public void testIsCryptoAllowed() throws Exception {

    //Regression for HARMONY-1029
    Provider mProv = (new SpiEngUtils()).new MyProvider("MyExMechProvider",
            "Provider for ExemptionMechanism testing",
            srvExemptionMechanism.concat(".").concat(defaultAlg),
            ExemptionMechanismProviderClass);

    ExemptionMechanism em = new ExemptionMechanism(
            new MyExemptionMechanismSpi(), mProv, defaultAlg) {
    };

    Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);

    assertFalse(em.isCryptoAllowed(key));

    em.init(key);
    assertFalse(em.isCryptoAllowed(key));

    em.genExemptionBlob();
    assertTrue(em.isCryptoAllowed(key));

    Key key1 = new MyExemptionMechanismSpi().new tmpKey("Proba",
            new byte[] { 1 });
    assertFalse(em.isCryptoAllowed(key1));

    em.init(key1);
    assertFalse(em.isCryptoAllowed(key));
}
 
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:39,代码来源:ExemptionMechanismTest.java

示例5: testGenExemptionBlob

import org.apache.harmony.crypto.tests.support.MyExemptionMechanismSpi; //导入依赖的package包/类
/**
 * Test for <code>genExemptionBlob((byte[] output, int outputOffset)</code> method
 */
@TestTargetNew(
    level = TestLevel.PARTIAL,
    notes = "Regression test",
    method = "genExemptionBlob",
    args = {byte[].class, int.class}
)
public void testGenExemptionBlob() throws Exception {
    //Regression for HARMONY-1029
    Provider mProv = (new SpiEngUtils()).new MyProvider("MyExMechProvider",
            "Provider for ExemptionMechanism testing",
            srvExemptionMechanism.concat(".").concat(defaultAlg),
            ExemptionMechanismProviderClass);

    ExemptionMechanism em = new ExemptionMechanism(
            new MyExemptionMechanismSpi(), mProv, defaultAlg) {
    };

    Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);

    em.init(key);
    // ExemptionMechanism doesn't check parameters
    // it is a responsibility of ExemptionMechanismSpi
    em.genExemptionBlob(null, 0);
    em.genExemptionBlob(new byte[0], 0);
    em.genExemptionBlob(new byte[10], -5);
}
 
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:30,代码来源:ExemptionMechanismTest.java

示例6: test_getOutputSizeI

import org.apache.harmony.crypto.tests.support.MyExemptionMechanismSpi; //导入依赖的package包/类
@TestTargets({
    @TestTargetNew(
        level = TestLevel.COMPLETE,
        notes = "",
        method = "getOutputSize",
        args = {int.class}
    ),
    @TestTargetNew(
        level = TestLevel.COMPLETE,
        notes = "",
        clazz = ExemptionMechanismSpi.class,
        method = "engineGetOutputSize",
        args = {int.class}
    )
})
public void test_getOutputSizeI() throws Exception {
    Provider mProv = (new SpiEngUtils()).new MyProvider("MyExMechProvider",
            "Provider for ExemptionMechanism testing",
            srvExemptionMechanism.concat(".").concat(defaultAlg),
            ExemptionMechanismProviderClass);

    ExemptionMechanism em = new ExemptionMechanism(
            new MyExemptionMechanismSpi(), mProv, defaultAlg) {
    };

    Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);

    try {
        em.getOutputSize(10);
        fail("IllegalStateException expected");
    } catch (IllegalStateException e) {
        //failed
    }

    em.init(key);
    assertEquals(10, em.getOutputSize(10));
}
 
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:38,代码来源:ExemptionMechanismTest.java

示例7: testIsCryptoAllowed

import org.apache.harmony.crypto.tests.support.MyExemptionMechanismSpi; //导入依赖的package包/类
/**
 * Test for <code>isCryptoAllowed(Key key)</code> method 
 */
public void testIsCryptoAllowed() throws Exception {

    //Regression for HARMONY-1029
    Provider mProv = (new SpiEngUtils()).new MyProvider("MyExMechProvider",
            "Provider for ExemptionMechanism testing",
            srvExemptionMechanism.concat(".").concat(defaultAlg),
            ExemptionMechanismProviderClass);

    ExemptionMechanism em = new ExemptionMechanism(
            new MyExemptionMechanismSpi(), mProv, defaultAlg) {
    };

    Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);

    assertFalse(em.isCryptoAllowed(key));

    em.init(key);
    assertFalse(em.isCryptoAllowed(key));

    em.genExemptionBlob();
    assertTrue(em.isCryptoAllowed(key));

    Key key1 = new MyExemptionMechanismSpi().new tmpKey("Proba",
            new byte[] { 1 });
    assertFalse(em.isCryptoAllowed(key1));

    em.init(key1);
    assertFalse(em.isCryptoAllowed(key));
}
 
开发者ID:shannah,项目名称:cn1,代码行数:33,代码来源:ExemptionMechanismTest.java


注:本文中的org.apache.harmony.crypto.tests.support.MyExemptionMechanismSpi类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。