rhubarbcipher 0.2.4 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/rhubarbcipher +7 -4
  3. metadata +22 -20
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1e53bc9ca6e48f5794371b6a500e9272978f0faf2db3bf1e6a88fdf053581dc4
4
- data.tar.gz: 65f99f497e447d4d7fa54db0bee22543a804365407bebd28c09065a5ca341d2c
3
+ metadata.gz: ec0dc68b0ac8309e634555604b935c7b68735b70e8978f1850d2e181d06d2b7d
4
+ data.tar.gz: 0d9d4d055b9e4f8418b459db766ddc4e99842cf832e918f3c531ea32ad721540
5
5
  SHA512:
6
- metadata.gz: 63ad6dfa4fe046dcddd3576fa58f22c25da2b9a07fc9fc601141e14a33c10f4a3adae8eb1ab4dd46574ede774d886a93fa4ccb8217fcc9bdcaa82865099bb87b
7
- data.tar.gz: 62ebd14d902bb761e5ab8366c50a818dd19f06bb8f57732915fcd8841bb7d02c5c03c2f476eb68676e03840eff9d7bd9e8a63e6f2864857b046bb8398af34820
6
+ metadata.gz: 491d292d32b252c86913dfa6cb6423b0cb16581d04f2751d2ca5ffeeae4f49078237c1e9e8658fc9a82cc2ce39bb5418c3b8f5716076e4af50c4a10da19fd6ad
7
+ data.tar.gz: ef3c1c995f94c90a756ab20ba68049c38706612c549c85ab68a9482f78e077648fa141173c85bbbc11d549ebc402cea38d35204e88848105d5c584bfba2a75de
data/bin/rhubarbcipher CHANGED
@@ -1,10 +1,13 @@
1
1
  #!/usr/bin/env ruby
2
2
  #
3
3
  # Title: RHUBARBCIPHER
4
- # Version: 0.2.4
5
- # Description: A plausibly deniable multi-key encryption/decryption system for GNU/Linux and BSD.
4
+ # Version: 0.2.5
5
+ # Description: An experimental multi-key encryption/decryption system for GNU/Linux and BSD.
6
6
  #
7
- # WARNING: Please be aware that this gem has not undergone any form of independent security evaluation.
7
+ # WARNING: Please be aware that this gem has not undergone any form of independent security evaluation
8
+ # and is provided for academic/educational purposes only. RHUBARBCIPHER should not be used to encrypt
9
+ # any data with high confidentiality, availability or integrity requirements, and should be treated
10
+ # purely as a proof of concept and/or learning exercise.
8
11
  #
9
12
  # Copyright (C) 2020 Peter Bruce Funnell
10
13
  #
@@ -380,8 +383,8 @@ class RhubarbCipherCore
380
383
  # Print program information to the screen.
381
384
  puts("#{@@program_name} #{@@program_version}")
382
385
  puts("\nCopyright (C) 2020 Peter Bruce Funnell")
386
+ puts("\nWARNING: Please be aware that this software has not undergone any form of independent security evaluation and is provided for academic/educational purposes only. RHUBARBCIPHER should not be used to encrypt any data with high confidentiality, availability or integrity requirements, and should be treated purely as a proof of concept and/or learning exercise.")
383
387
  puts("\nThis program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.")
384
- puts("\nBTC Donation Address (Author): 3EdoXV1w8H7y7M9ZdpjRC7GPnX4aouy18g")
385
388
 
386
389
  # Ensure that the current system is either GNU/Linux or BSD.
387
390
  if not (RUBY_PLATFORM.include?("linux") or RUBY_PLATFORM.include?("bsd"))
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rhubarbcipher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Funnell
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-12 00:00:00.000000000 Z
11
+ date: 2024-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cloversplitter
@@ -50,17 +50,20 @@ dependencies:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
52
  version: 1.1.2
53
- description: 'RHUBARBCIPHER is a plausibly deniable multi-key file encryption/decryption
54
- system for GNU/Linux and BSD that combines one-time pad encryption/decryption with
55
- Shamir''s Secret Sharing in an attempt to encrypt files in a versatile yet information-theoretically
56
- secure manner. RHUBARBCIPHER is only recommended for smaller files (e.g. less than
57
- 15000KiB) due to the time taken to encrypt/decrypt data, which increases as a function
58
- of file size. It includes an optional decoy feature which allows users to specify
59
- a decoy file and generate a set of decoy keys in addition to the real keys. Size
60
- similarity between the decoy file and the real file is strictly enforced. WARNING:
61
- Please be aware that this gem has not undergone any form of independent security
62
- evaluation.'
63
- email: hello@octetsplicer.com
53
+ description: 'WARNING: Please be aware that this gem has not undergone any form of
54
+ independent security evaluation and is provided for academic/educational purposes
55
+ only. RHUBARBCIPHER should not be used to encrypt any data with high confidentiality,
56
+ availability or integrity requirements, and should be treated purely as a proof
57
+ of concept and/or learning exercise. RHUBARBCIPHER is an experimental multi-key
58
+ file encryption/decryption system for GNU/Linux and BSD that combines one-time pad
59
+ encryption/decryption with Shamir''s Secret Sharing in an attempt to encrypt files
60
+ in a versatile yet information-theoretically secure manner. RHUBARBCIPHER only works
61
+ well on smaller files (e.g. less than 15000KiB) due to the time taken to encrypt/decrypt
62
+ data, which increases as a function of file size. It includes an optional decoy
63
+ feature which allows users to specify a decoy file and generate a set of decoy keys
64
+ in addition to the real keys. Size similarity between the decoy file and the real
65
+ file is strictly enforced.'
66
+ email: octetsplicer@proton.me
64
67
  executables:
65
68
  - rhubarbcipher
66
69
  extensions: []
@@ -71,7 +74,7 @@ homepage: https://github.com/octetsplicer/RHUBARBCIPHER
71
74
  licenses:
72
75
  - GPL-3.0+
73
76
  metadata: {}
74
- post_install_message:
77
+ post_install_message:
75
78
  rdoc_options: []
76
79
  require_paths:
77
80
  - lib
@@ -87,10 +90,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
90
  version: '0'
88
91
  requirements:
89
92
  - A GNU/Linux or BSD operating system.
90
- rubyforge_project:
91
- rubygems_version: 2.7.6.2
92
- signing_key:
93
+ rubygems_version: 3.3.15
94
+ signing_key:
93
95
  specification_version: 4
94
- summary: A plausibly deniable multi-key encryption/decryption system for GNU/Linux
95
- and BSD.
96
+ summary: An experimental/proof-of-concept multi-key encryption/decryption system for
97
+ GNU/Linux and BSD.
96
98
  test_files: []