summaryrefslogtreecommitdiff
path: root/controllers/interfaces/cli.rb
diff options
context:
space:
mode:
Diffstat (limited to 'controllers/interfaces/cli.rb')
-rw-r--r--controllers/interfaces/cli.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/controllers/interfaces/cli.rb b/controllers/interfaces/cli.rb
index da027f7..5967c75 100644
--- a/controllers/interfaces/cli.rb
+++ b/controllers/interfaces/cli.rb
@@ -12,6 +12,28 @@ module NanoBot
when 'version'
puts NanoBot::GEM[:version]
exit
+ when 'security'
+ result = NanoBot.security
+
+ if result[:encryption]
+ puts "\n✅ Encryption is enabled and properly working."
+ puts ' It means that your data is cyrptographed stored in your disk.'
+ else
+ puts "\n❌ Encryption is not being utilized to store your content."
+ puts ' This means that your data can be easily read because it is stored in plaintext.'
+ end
+
+ if result[:password]
+ puts "\n✅ A password is being used for the encrypted content."
+ puts ' This means that only those who possess the password can decrypt your data.'
+ else
+ puts "\n❌ No password is being used for the encrypted content."
+ puts ' This means that anyone can easily decrypt your data.'
+ end
+
+ puts ''
+
+ exit
when 'help', '', nil
puts ''
puts "Nano Bots #{NanoBot::GEM[:version]}"
@@ -34,6 +56,7 @@ module NanoBot
puts ' nb - STATE-KEY state'
puts ' nb cartridge.yml STATE-KEY state'
puts ''
+ puts ' nb security'
puts ' nb version'
puts ' nb help'
puts ''