cloversplitter 0.2.1 → 0.2.2
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.
- checksums.yaml +4 -4
- data/lib/cloversplitter.rb +2 -2
- metadata +17 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2ba4e24149ee1c7d03f5aa660a4f706d4c2510b7788c84cdf28de7bcd87a044
|
|
4
|
+
data.tar.gz: 4ced4984913ac683956a5e1ae4d4513c7242e300a881b5a74cdf2a7dda0e3dc3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce0a1791e21479f62637bb26ee9121981d4f0188b6d8080fcebf413d140394b4ba8b3b66c9ca0bb2f00fb869d2bfc7bfd09d3fb99944196b742b43cce2eba6d3
|
|
7
|
+
data.tar.gz: 8e80725f34596fb9e15cd16e7099fcf1b0a0cd120169aa09227361d24fbcda2b84b2a5f3da6762a61c759b58f62ebe092793dec7b92620ab1ddcf5c450c4affa
|
data/lib/cloversplitter.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Title: CLOVERSPLITTER
|
|
2
|
-
# Version: 0.2.
|
|
2
|
+
# Version: 0.2.2
|
|
3
3
|
#
|
|
4
|
-
# WARNING: Please be aware that this gem has not undergone any form of security evaluation. This gem is not recommended for usage under mission-critical circumstances and should not be relied upon to protect confidential or secret information. Users should assume that this gem is insecure
|
|
4
|
+
# WARNING: Please be aware that this gem has not undergone any form of security evaluation, and is provided for academic/educational purposes only. This gem is not recommended for usage under mission-critical circumstances and should not be relied upon to protect confidential or secret information, or any information with high availability or integrity requirements. This gem should be treated purely as a proof of concept and/or learning exercise. Users should assume that this gem is insecure and that any data it is used to split into shares may be lost.
|
|
5
5
|
#
|
|
6
6
|
# Copyright (C) 2020 Peter Bruce Funnell
|
|
7
7
|
#
|
metadata
CHANGED
|
@@ -1,21 +1,24 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloversplitter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
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:
|
|
11
|
+
date: 2024-08-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description: 'A pure-Ruby implementation of Shamir''s Secret Sharing.
|
|
14
|
-
be aware that this gem has not undergone any form of security evaluation
|
|
15
|
-
is
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
description: 'A pure-Ruby experimental implementation of Shamir''s Secret Sharing.
|
|
14
|
+
WARNING: Please be aware that this gem has not undergone any form of security evaluation,
|
|
15
|
+
and is provided for academic/educational purposes only. This gem is not recommended
|
|
16
|
+
for usage under mission-critical circumstances and should not be relied upon to
|
|
17
|
+
protect confidential or secret information, or any information with high availability
|
|
18
|
+
or integrity requirements. This gem should be treated purely as a proof of concept
|
|
19
|
+
and/or learning exercise. Users should assume that this gem is insecure and that
|
|
20
|
+
any data it is used to split into shares may be lost.'
|
|
21
|
+
email: octetsplicer@proton.me
|
|
19
22
|
executables: []
|
|
20
23
|
extensions: []
|
|
21
24
|
extra_rdoc_files: []
|
|
@@ -25,7 +28,7 @@ homepage: https://github.com/octetsplicer/CLOVERSPLITTER
|
|
|
25
28
|
licenses:
|
|
26
29
|
- MIT
|
|
27
30
|
metadata: {}
|
|
28
|
-
post_install_message:
|
|
31
|
+
post_install_message:
|
|
29
32
|
rdoc_options: []
|
|
30
33
|
require_paths:
|
|
31
34
|
- lib
|
|
@@ -40,9 +43,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
40
43
|
- !ruby/object:Gem::Version
|
|
41
44
|
version: '0'
|
|
42
45
|
requirements: []
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
signing_key:
|
|
46
|
+
rubygems_version: 3.3.15
|
|
47
|
+
signing_key:
|
|
46
48
|
specification_version: 4
|
|
47
|
-
summary: Shamir's Secret Sharing
|
|
49
|
+
summary: An experimental pure-Ruby implementation of Shamir's Secret Sharing (for
|
|
50
|
+
academic/educational purposes only).
|
|
48
51
|
test_files: []
|