コード例 #1
0
ファイル: Attributes.php プロジェクト: afk11/phpasn1
 public function addAttribute($objectIdentifier, Set $attribute)
 {
     if (is_string($objectIdentifier)) {
         $objectIdentifier = new ObjectIdentifier($objectIdentifier);
     }
     $attributeSequence = new Sequence($objectIdentifier, $attribute);
     $attributeSequence->getNumberOfLengthOctets();
     // length and number of length octets is calculated
     $this->addChild($attributeSequence);
 }