WrappedKeyEntry 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
WrappedKeyEntry(IntPtr, JniHandleOwnership) | |
WrappedKeyEntry(Byte[], String, String, IAlgorithmParameterSpec) |
Constructs a |
WrappedKeyEntry(IntPtr, JniHandleOwnership)
protected WrappedKeyEntry (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Security.Keystore.WrappedKeyEntry : nativeint * Android.Runtime.JniHandleOwnership -> Android.Security.Keystore.WrappedKeyEntry
Parameters
- javaReference
-
IntPtr
nativeint
- transfer
- JniHandleOwnership
Applies to
WrappedKeyEntry(Byte[], String, String, IAlgorithmParameterSpec)
Constructs a WrappedKeyEntry
with a binary wrapped key.
[Android.Runtime.Register(".ctor", "([BLjava/lang/String;Ljava/lang/String;Ljava/security/spec/AlgorithmParameterSpec;)V", "", ApiSince=28)]
public WrappedKeyEntry (byte[]? wrappedKeyBytes, string? wrappingKeyAlias, string? transformation, Java.Security.Spec.IAlgorithmParameterSpec? algorithmParameterSpec);
[<Android.Runtime.Register(".ctor", "([BLjava/lang/String;Ljava/lang/String;Ljava/security/spec/AlgorithmParameterSpec;)V", "", ApiSince=28)>]
new Android.Security.Keystore.WrappedKeyEntry : byte[] * string * string * Java.Security.Spec.IAlgorithmParameterSpec -> Android.Security.Keystore.WrappedKeyEntry
Parameters
- wrappedKeyBytes
- Byte[]
ASN.1 DER encoded wrapped key
- wrappingKeyAlias
- String
identifies the private key that can unwrap the wrapped key
- transformation
- String
used to unwrap the key. ex: "RSA/ECB/OAEPPadding"
- algorithmParameterSpec
- IAlgorithmParameterSpec
spec for the private key used to unwrap the wrapped key
- Attributes
Remarks
Constructs a WrappedKeyEntry
with a binary wrapped key.
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.