Class FilePrivateKeySupplier
  A file-based key provider. This class reads private key from a pem key file.
    Inheritance
    
    FilePrivateKeySupplier
      
   
  
  
  
  Assembly: OCI.DotNetSDK.Common.dll
  Syntax
  
    public class FilePrivateKeySupplier : ISupplier<RsaKeyParameters>
   
  Constructors
  
  FilePrivateKeySupplier(string, SecureString)
  
  
  Declaration
  
    public FilePrivateKeySupplier(string pemFilePath, SecureString passPhrase)
   
  Parameters
  
  Fields
  key
  
  
  Declaration
  
    protected RsaKeyParameters key
   
  Field Value
  
    
      
        | Type | Description | 
    
    
      
        | RsaKeyParameters |  | 
    
  
  passPhrase
  
  
  Declaration
  
    protected readonly SecureString passPhrase
   
  Field Value
  
  pemFilePath
  
  
  Declaration
  
    protected readonly string pemFilePath
   
  Field Value
  
  Methods
  
  GetKey()
  
  
  Declaration
  
    public RsaKeyParameters GetKey()
   
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | RsaKeyParameters | The private key from key pair. | 
    
  
  Implements