Exemplo n.º 1
0
 protected function _valueASN1()
 {
     $flags = new Flags($this->_keyUsage, 9);
     return $flags->bitString()->withoutTrailingZeroes();
 }
Exemplo n.º 2
0
 /**
  * Generate ASN.1 element.
  *
  * @return BitString
  */
 public function toASN1()
 {
     $flags = new Flags($this->_flags, 9);
     return $flags->bitString()->withoutTrailingZeroes();
 }