DEREncodableVector.java
资源名称:security.rar [点击查看]
上传用户:lior1029
上传日期:2013-05-07
资源大小:209k
文件大小:1k
源码类别:
CA认证
开发平台:
Java
- package org.bouncycastle.asn1;
- import java.util.Vector;
- /**
- * a general class for building up a vector of DER encodable objects -
- * this will eventually be superceded by ASN1EncodableVector so you should
- * use that class in preference.
- */
- public class DEREncodableVector
- {
- private Vector v = new Vector();
- //shiyu add
- public DEREncodableVector()
- {
- }
- //shiyu add
- public DEREncodableVector(Vector v)
- {
- this.v=v;
- }
- public void add(
- DEREncodable obj)
- {
- v.addElement(obj);
- }
- public DEREncodable get(
- int i)
- {
- return (DEREncodable)v.elementAt(i);
- }
- public int size()
- {
- return v.size();
- }
- }