Home | History | Annotate | Download | only in pkcs8

Lines Matching defs:version

5  *  The ASF licenses this file to You under the Apache License, Version 2.0
37 * version Version,
42 * Version ::= INTEGER
51 private final int version;
57 public PrivateKeyInfo(int version, AlgorithmIdentifier privateKeyAlgorithm,
59 this.version = version;
65 private PrivateKeyInfo(int version,
68 this(version, privateKeyAlgorithm, privateKey, attributes);
73 return version;
103 ASN1Integer.getInstance(), // version
123 values[0] = ASN1Integer.fromIntValue(privateKeyInfo.version);