class Slosilo::Error::InsecureKeyStorage
An error thrown when attempting to store a private key in an unecrypted storage. Set Slosilo.encryption_key
to secure the storage or make sure to store just the public keys (using Key#public
).
Public Class Methods
new(msg = "can't store a private key in a plaintext storage")
click to toggle source
Calls superclass method
# File lib/slosilo/errors.rb, line 7 def initialize msg = "can't store a private key in a plaintext storage" super end