Help for this page

Select Code to Download


  1. or download this
    PasswordPolicyResponseValue ::= SEQUENCE {
      warning [0] CHOICE OPTIONAL {
        timeBeforeExpiration [0] INTEGER (0 .. maxInt),
    ...
        passwordInHistory     (8) 
      }
    }
    
  2. or download this
    #!/usr/bin/perl 
    
    use Convert::ASN1;
    ...
    $data=pack("h*",$data);
    $structure=$asn->decode($data) or print $asn->error();
    print Dumper($structure);