Sha256: b93fb3505620386a3218cc62e62a57e0be4e0aa5285f8fea104dae48184806fe
Contents?: true
Size: 377 Bytes
Versions: 3
Compression:
Stored size: 377 Bytes
Contents
module Zaptec # rubocop:disable Lint/UnusedMethodArgument class NullEncryptor def encrypt(clear_text, key_provider: nil, cipher_options: {}) clear_text end def decrypt(encrypted_text, key_provider: nil, cipher_options: {}) encrypted_text end def encrypted?(_text) false end end # rubocop:enable Lint/UnusedMethodArgument end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
stekker_zaptec-1.2.2 | lib/zaptec/null_encryptor.rb |
stekker_zaptec-1.2.1 | lib/zaptec/null_encryptor.rb |
stekker_zaptec-1.2.0 | lib/zaptec/null_encryptor.rb |