DEREncodableVector.java
上传用户:lior1029
上传日期:2013-05-07
资源大小:209k
文件大小:1k
源码类别:

CA认证

开发平台:

Java

  1. package org.bouncycastle.asn1;
  2. import java.util.Vector;
  3. /**
  4.  * a general class for building up a vector of DER encodable objects -
  5.  * this will eventually be superceded by ASN1EncodableVector so you should
  6.  * use that class in preference.
  7.  */
  8. public class DEREncodableVector
  9. {
  10.     private Vector  v = new Vector();
  11. //shiyu add
  12. public DEREncodableVector()
  13. {
  14. }
  15. //shiyu add
  16. public DEREncodableVector(Vector v)
  17. {
  18. this.v=v;
  19. }
  20.     public void add(
  21.         DEREncodable   obj)
  22.     {
  23.         v.addElement(obj);
  24.     }
  25.     public DEREncodable get(
  26.         int i)
  27.     {
  28.         return (DEREncodable)v.elementAt(i);
  29.     }
  30.     public int size()
  31.     {
  32.         return v.size();
  33.     }
  34. }