Class: Sequel::Plugins::ColumnEncryption::ColumnEncryptionMetadata
- Defined in:
- lib/sequel/plugins/column_encryption.rb
Overview
This stores four callables for handling encyption, decryption, data searching, and key searching. One of these is created for each encrypted column.
Instance Attribute Summary collapse
- 
  
    
      #data_searcher  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute data_searcher. 
- 
  
    
      #decryptor  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute decryptor. 
- 
  
    
      #encryptor  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute encryptor. 
- 
  
    
      #key_searcher  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute key_searcher. 
Instance Attribute Details
#data_searcher ⇒ Object
Returns the value of attribute data_searcher
| 615 616 617 | # File 'lib/sequel/plugins/column_encryption.rb', line 615 def data_searcher @data_searcher end | 
#decryptor ⇒ Object
Returns the value of attribute decryptor
| 615 616 617 | # File 'lib/sequel/plugins/column_encryption.rb', line 615 def decryptor @decryptor end | 
#encryptor ⇒ Object
Returns the value of attribute encryptor
| 615 616 617 | # File 'lib/sequel/plugins/column_encryption.rb', line 615 def encryptor @encryptor end | 
#key_searcher ⇒ Object
Returns the value of attribute key_searcher
| 615 616 617 | # File 'lib/sequel/plugins/column_encryption.rb', line 615 def key_searcher @key_searcher end |