Method: Virgil::SDK::Cryptography::Keys::KeyStorage.default_folder

Defined in:
lib/virgil/sdk/cryptography/keys/key_storage.rb

.default_folderObject



74
75
76
77
78
# File 'lib/virgil/sdk/cryptography/keys/key_storage.rb', line 74

def self.default_folder
  path = "./key_storage"
  FileUtils.mkdir(path) unless Dir.exist?(path)
  path
end