1 19 20 package com.maverick.crypto.asn1; 21 22 import java.util.Vector ; 23 24 29 public class DEREncodableVector 30 { 31 private Vector v = new Vector (); 32 33 public void add( 34 DEREncodable obj) 35 { 36 v.addElement(obj); 37 } 38 39 public DEREncodable get( 40 int i) 41 { 42 return (DEREncodable)v.elementAt(i); 43 } 44 45 public int size() 46 { 47 return v.size(); 48 } 49 } 50 | Popular Tags |