Class PrivateKeySupplier
An implementation of ISupplier that reads private key.
Inheritance
PrivateKeySupplier
Assembly: OCI.DotNetSDK.Common.dll
Syntax
public class PrivateKeySupplier : ISupplier<RsaKeyParameters>
Constructors
PrivateKeySupplier(RsaKeyParameters)
Declaration
public PrivateKeySupplier(RsaKeyParameters privateKey)
Parameters
| Type |
Name |
Description |
| RsaKeyParameters |
privateKey |
|
PrivateKeySupplier(string)
Declaration
public PrivateKeySupplier(string keyContent)
Parameters
| Type |
Name |
Description |
| string |
keyContent |
|
PrivateKeySupplier(string, string)
Declaration
public PrivateKeySupplier(string keyContent, string passPhrase)
Parameters
Methods
GetKey()
Retrieves the private key from a key string.
Declaration
public RsaKeyParameters GetKey()
Returns
| Type |
Description |
| RsaKeyParameters |
|
Implements