}
public void decode(Decoder dec) throws ASN1Exception, IOException {
super.decode(dec);
ASN1Type inner = (ASN1Type) super.getValue();
if (!(inner instanceof ASN1OctetString)) {
throw new ASN1Exception("Inner value of wrong type: "
+ inner.getClass().getName());
}
keyIdentifier = (ASN1OctetString) inner;
}