當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。