PKCS12Attribute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| PKCS12Attribute(Byte[]) |
Constructs a PKCS12 attribute from its ASN. |
| PKCS12Attribute(String, String) |
Constructs a PKCS12 attribute from its name and value. |
PKCS12Attribute(Byte[])
Constructs a PKCS12 attribute from its ASN.
[Android.Runtime.Register(".ctor", "([B)V", "", ApiSince=26)]
public PKCS12Attribute (byte[]? encoded);
[<Android.Runtime.Register(".ctor", "([B)V", "", ApiSince=26)>]
new Java.Security.PKCS12Attribute : byte[] -> Java.Security.PKCS12Attribute
Parameters
- encoded
- Byte[]
the attribute's ASN.1 DER encoding. It is cloned to prevent subsequent modificaion.
- Attributes
Remarks
Java documentation for java.security.PKCS12Attribute.PKCS12Attribute(byte[]).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
PKCS12Attribute(String, String)
Constructs a PKCS12 attribute from its name and value.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;)V", "", ApiSince=26)]
public PKCS12Attribute (string? name, string? value);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;)V", "", ApiSince=26)>]
new Java.Security.PKCS12Attribute : string * string -> Java.Security.PKCS12Attribute
Parameters
- name
- String
the attribute's identifier
- value
- String
the attribute's value
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.