⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 attributetableunittest.java

📁 J2ME加密算法的代码!里面包括常用的算法
💻 JAVA
字号:
package org.bouncycastle.asn1.test;import java.util.Hashtable;import org.bouncycastle.asn1.ASN1EncodableVector;import org.bouncycastle.asn1.DERObjectIdentifier;import org.bouncycastle.asn1.DERSet;import org.bouncycastle.asn1.cms.Attribute;import org.bouncycastle.asn1.cms.AttributeTable;import org.bouncycastle.util.test.SimpleTest;public class AttributeTableUnitTest     extends SimpleTest{    private static final DERObjectIdentifier type1 = new DERObjectIdentifier("1.1.1");    private static final DERObjectIdentifier type2 = new DERObjectIdentifier("1.1.2");    private static final DERObjectIdentifier type3 = new DERObjectIdentifier("1.1.3");        public String getName()    {        return "AttributeTable";    }        public void performTest()         throws Exception    {        ASN1EncodableVector v = new ASN1EncodableVector();                v.add(new Attribute(type1, new DERSet(type1)));        v.add(new Attribute(type2, new DERSet(type2)));                AttributeTable table = new AttributeTable(v);                Attribute a = table.get(type1);        if (a == null)        {            fail("type1 attribute not found.");        }        if (!a.getAttrValues().equals(new DERSet(type1)))        {            fail("wrong value retrieved for type1!");        }                a = table.get(type2);        if (a == null)        {            fail("type2 attribute not found.");        }        if (!a.getAttrValues().equals(new DERSet(type2)))        {            fail("wrong value retrieved for type2!");        }                a = table.get(type3);        if (a != null)        {            fail("type3 attribute found when none expected.");        }                ASN1EncodableVector vec = table.getAll(type1);        if (vec.size() != 1)        {            fail("wrong vector size for type1.");        }                vec = table.getAll(type3);        if (vec.size() != 0)        {            fail("wrong vector size for type3.");        }                vec = table.toASN1EncodableVector();        if (vec.size() != 2)        {            fail("wrong vector size for single.");        }                Hashtable t = table.toHashtable();                if (t.size() != 2)        {            fail("hashtable wrong size.");        }                // multiple                v = new ASN1EncodableVector();                v.add(new Attribute(type1, new DERSet(type1)));        v.add(new Attribute(type1, new DERSet(type2)));        v.add(new Attribute(type1, new DERSet(type3)));        v.add(new Attribute(type2, new DERSet(type2)));                table = new AttributeTable(v);                a = table.get(type1);        if (!a.getAttrValues().equals(new DERSet(type1)))        {            fail("wrong value retrieved for type1 multi get!");        }                vec = table.getAll(type1);        if (vec.size() != 3)        {            fail("wrong vector size for multiple type1.");        }                a = (Attribute)vec.get(0);        if (!a.getAttrValues().equals(new DERSet(type1)))        {            fail("wrong value retrieved for type1(0)!");        }                a = (Attribute)vec.get(1);        if (!a.getAttrValues().equals(new DERSet(type2)))        {            fail("wrong value retrieved for type1(1)!");        }                a = (Attribute)vec.get(2);        if (!a.getAttrValues().equals(new DERSet(type3)))        {            fail("wrong value retrieved for type1(2)!");        }                vec = table.getAll(type2);        if (vec.size() != 1)        {            fail("wrong vector size for multiple type2.");        }                vec = table.toASN1EncodableVector();        if (vec.size() != 4)        {            fail("wrong vector size for multiple.");        }    }    public static void main(        String[]    args)    {        runTest(new AttributeTableUnitTest());    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -