Java Code Examples for sun.security.pkcs.PKCS9Attribute#getOID()
The following examples show how to use
sun.security.pkcs.PKCS9Attribute#getOID() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PKCS10Attribute.java From Bytecoder with Apache License 2.0 | 2 votes |
/** * Constructs an attribute from a DER encoding. * This constructor expects the value to be encoded as defined above, * i.e. a SEQUENCE of OID and SET OF value(s), not a literal * X.509 v3 extension. Only PKCS9 defined attributes are supported * currently. * * @param derVal the der encoded attribute. * @exception IOException on parsing errors. */ public PKCS10Attribute(DerValue derVal) throws IOException { PKCS9Attribute attr = new PKCS9Attribute(derVal); this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 2
Source File: PKCS10Attribute.java From openjdk-8-source with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from PKCS9 attribute. * * @param attr the PKCS9Attribute to create from. */ public PKCS10Attribute(PKCS9Attribute attr) { this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 3
Source File: PKCS10Attribute.java From openjdk-8 with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from a DER encoding. * This constructor expects the value to be encoded as defined above, * i.e. a SEQUENCE of OID and SET OF value(s), not a literal * X.509 v3 extension. Only PKCS9 defined attributes are supported * currently. * * @param derVal the der encoded attribute. * @exception IOException on parsing errors. */ public PKCS10Attribute(DerValue derVal) throws IOException { PKCS9Attribute attr = new PKCS9Attribute(derVal); this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 4
Source File: PKCS10Attribute.java From hottub with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from PKCS9 attribute. * * @param attr the PKCS9Attribute to create from. */ public PKCS10Attribute(PKCS9Attribute attr) { this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 5
Source File: PKCS10Attribute.java From hottub with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from a DER encoding. * This constructor expects the value to be encoded as defined above, * i.e. a SEQUENCE of OID and SET OF value(s), not a literal * X.509 v3 extension. Only PKCS9 defined attributes are supported * currently. * * @param derVal the der encoded attribute. * @exception IOException on parsing errors. */ public PKCS10Attribute(DerValue derVal) throws IOException { PKCS9Attribute attr = new PKCS9Attribute(derVal); this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 6
Source File: PKCS10Attribute.java From jdk8u-jdk with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from PKCS9 attribute. * * @param attr the PKCS9Attribute to create from. */ public PKCS10Attribute(PKCS9Attribute attr) { this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 7
Source File: PKCS10Attribute.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from PKCS9 attribute. * * @param attr the PKCS9Attribute to create from. */ public PKCS10Attribute(PKCS9Attribute attr) { this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 8
Source File: PKCS10Attribute.java From openjdk-8 with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from PKCS9 attribute. * * @param attr the PKCS9Attribute to create from. */ public PKCS10Attribute(PKCS9Attribute attr) { this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 9
Source File: PKCS10Attribute.java From openjdk-jdk9 with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from a DER encoding. * This constructor expects the value to be encoded as defined above, * i.e. a SEQUENCE of OID and SET OF value(s), not a literal * X.509 v3 extension. Only PKCS9 defined attributes are supported * currently. * * @param derVal the der encoded attribute. * @exception IOException on parsing errors. */ public PKCS10Attribute(DerValue derVal) throws IOException { PKCS9Attribute attr = new PKCS9Attribute(derVal); this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 10
Source File: PKCS10Attribute.java From jdk8u-jdk with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from a DER encoding. * This constructor expects the value to be encoded as defined above, * i.e. a SEQUENCE of OID and SET OF value(s), not a literal * X.509 v3 extension. Only PKCS9 defined attributes are supported * currently. * * @param derVal the der encoded attribute. * @exception IOException on parsing errors. */ public PKCS10Attribute(DerValue derVal) throws IOException { PKCS9Attribute attr = new PKCS9Attribute(derVal); this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 11
Source File: PKCS10Attribute.java From dragonwell8_jdk with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from a DER encoding. * This constructor expects the value to be encoded as defined above, * i.e. a SEQUENCE of OID and SET OF value(s), not a literal * X.509 v3 extension. Only PKCS9 defined attributes are supported * currently. * * @param derVal the der encoded attribute. * @exception IOException on parsing errors. */ public PKCS10Attribute(DerValue derVal) throws IOException { PKCS9Attribute attr = new PKCS9Attribute(derVal); this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 12
Source File: PKCS10Attribute.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from PKCS9 attribute. * * @param attr the PKCS9Attribute to create from. */ public PKCS10Attribute(PKCS9Attribute attr) { this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 13
Source File: PKCS10Attribute.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from a DER encoding. * This constructor expects the value to be encoded as defined above, * i.e. a SEQUENCE of OID and SET OF value(s), not a literal * X.509 v3 extension. Only PKCS9 defined attributes are supported * currently. * * @param derVal the der encoded attribute. * @exception IOException on parsing errors. */ public PKCS10Attribute(DerValue derVal) throws IOException { PKCS9Attribute attr = new PKCS9Attribute(derVal); this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 14
Source File: PKCS10Attribute.java From openjdk-jdk8u with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from PKCS9 attribute. * * @param attr the PKCS9Attribute to create from. */ public PKCS10Attribute(PKCS9Attribute attr) { this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 15
Source File: PKCS10Attribute.java From openjdk-jdk8u with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from a DER encoding. * This constructor expects the value to be encoded as defined above, * i.e. a SEQUENCE of OID and SET OF value(s), not a literal * X.509 v3 extension. Only PKCS9 defined attributes are supported * currently. * * @param derVal the der encoded attribute. * @exception IOException on parsing errors. */ public PKCS10Attribute(DerValue derVal) throws IOException { PKCS9Attribute attr = new PKCS9Attribute(derVal); this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 16
Source File: PKCS10Attribute.java From jdk8u60 with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from PKCS9 attribute. * * @param attr the PKCS9Attribute to create from. */ public PKCS10Attribute(PKCS9Attribute attr) { this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 17
Source File: PKCS10Attribute.java From jdk8u60 with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from a DER encoding. * This constructor expects the value to be encoded as defined above, * i.e. a SEQUENCE of OID and SET OF value(s), not a literal * X.509 v3 extension. Only PKCS9 defined attributes are supported * currently. * * @param derVal the der encoded attribute. * @exception IOException on parsing errors. */ public PKCS10Attribute(DerValue derVal) throws IOException { PKCS9Attribute attr = new PKCS9Attribute(derVal); this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 18
Source File: PKCS10Attribute.java From TencentKona-8 with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from PKCS9 attribute. * * @param attr the PKCS9Attribute to create from. */ public PKCS10Attribute(PKCS9Attribute attr) { this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 19
Source File: PKCS10Attribute.java From TencentKona-8 with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from a DER encoding. * This constructor expects the value to be encoded as defined above, * i.e. a SEQUENCE of OID and SET OF value(s), not a literal * X.509 v3 extension. Only PKCS9 defined attributes are supported * currently. * * @param derVal the der encoded attribute. * @exception IOException on parsing errors. */ public PKCS10Attribute(DerValue derVal) throws IOException { PKCS9Attribute attr = new PKCS9Attribute(derVal); this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }
Example 20
Source File: PKCS10Attribute.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 2 votes |
/** * Constructs an attribute from a DER encoding. * This constructor expects the value to be encoded as defined above, * i.e. a SEQUENCE of OID and SET OF value(s), not a literal * X.509 v3 extension. Only PKCS9 defined attributes are supported * currently. * * @param derVal the der encoded attribute. * @exception IOException on parsing errors. */ public PKCS10Attribute(DerValue derVal) throws IOException { PKCS9Attribute attr = new PKCS9Attribute(derVal); this.attributeId = attr.getOID(); this.attributeValue = attr.getValue(); }