Class: Match::Encryption::Interface
- Inherits:
-
Object
- Object
- Match::Encryption::Interface
- Defined in:
- match/lib/match/encryption/interface.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#decrypt_files ⇒ Object
Call this method to trigger the actual decryption.
-
#encrypt_files(password: nil) ⇒ Object
Call this method to trigger the actual encryption.
Instance Method Details
#decrypt_files ⇒ Object
Call this method to trigger the actual decryption
12 13 14 |
# File 'match/lib/match/encryption/interface.rb', line 12 def decrypt_files not_implemented(__method__) end |
#encrypt_files(password: nil) ⇒ Object
Call this method to trigger the actual encryption
6 7 8 |
# File 'match/lib/match/encryption/interface.rb', line 6 def encrypt_files(password: nil) not_implemented(__method__) end |