sekishiki 20260821
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 +7 -0
- data/COPYING +661 -0
- data/README.org +84 -0
- data/Rakefile +12 -0
- data/lib/sekishiki/crypto.rb +109 -0
- data/lib/sekishiki/packet.rb +205 -0
- data/lib/sekishiki/utils.rb +59 -0
- data/lib/sekishiki/version.rb +5 -0
- data/lib/sekishiki.rb +12 -0
- data/res/img/packet_format.png +0 -0
- data/res/img/packet_format.svg +4 -0
- data/res/logo/logo.png +0 -0
- data/res/logo/sekishiki.svg +477 -0
- data/sig/crypto.rbs +44 -0
- data/sig/packet.rbs +99 -0
- data/sig/sekishiki.rbs +3 -0
- data/sig/utils.rbs +14 -0
- data/sig/version.rbs +3 -0
- data/why_sekishiki.org +45 -0
- metadata +91 -0
data/why_sekishiki.org
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
#+title: README
|
|
2
|
+
#+author: Sidney PEPO
|
|
3
|
+
#+date: [2026-08-21 Fri]
|
|
4
|
+
|
|
5
|
+
* Why "Sekishiki"?
|
|
6
|
+
** Spoiler alert
|
|
7
|
+
The answer for this question *contains spoilers* from Saint Seiya (aka Knights
|
|
8
|
+
of the Zodiac), so continue reading *ONLY* if you are okay with that!
|
|
9
|
+
|
|
10
|
+
#+begin_quote
|
|
11
|
+
TL;DR: it is a Saint Seiya reference.
|
|
12
|
+
#+end_quote
|
|
13
|
+
|
|
14
|
+
** The actual answer
|
|
15
|
+
#+begin_quote
|
|
16
|
+
[!CAUTION]
|
|
17
|
+
*Final warning*: if you are still reading this, I presume that you have already
|
|
18
|
+
watched Saint Seiya or just do not care about getting some spoilers.
|
|
19
|
+
#+end_quote
|
|
20
|
+
|
|
21
|
+
Sekishiki is a concept found in many ancient and traditional beliefs. Usually,
|
|
22
|
+
it describes a place where spirits go in the afterlife. In this project, the
|
|
23
|
+
concept was taken from Saint Seiya (aka Knights of the Zodiac)[fn:1].
|
|
24
|
+
|
|
25
|
+
In Saint Seiya, Sekishiki stands for:
|
|
26
|
+
|
|
27
|
+
1. The supernatural ability to see and interact with souls; and
|
|
28
|
+
|
|
29
|
+
2. An intermediary passage between Earth and the Underworld where souls goes
|
|
30
|
+
after their death;
|
|
31
|
+
|
|
32
|
+
The anime, specifically in Sanctuary saga, presents both concepts during clashes
|
|
33
|
+
involving Deathmask, the Cancer Gold Saint, who is one of the few users capable
|
|
34
|
+
of using of such techniques[fn:2].
|
|
35
|
+
|
|
36
|
+
In the context of Sekishiki as a network protocol, the idea behind this name is
|
|
37
|
+
related to the fact that it will act both as "a way to interact with" and "an
|
|
38
|
+
intermediary medium" between readable raw bytes and encrypted bytes in transit.
|
|
39
|
+
|
|
40
|
+
About the crabby-like logo, it is a recreation of the mask of Deathmask.
|
|
41
|
+
|
|
42
|
+
* Footnotes
|
|
43
|
+
[fn:1] https://saintseiya.fandom.com/wiki/Praesepe
|
|
44
|
+
|
|
45
|
+
[fn:2] https://saintseiya.fandom.com/wiki/Cancer_Deathmask
|
metadata
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: sekishiki
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: '20260821'
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Sidney PEPO
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: rbnacl
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: 7.1.2
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: 7.1.2
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: rotp
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 6.3.0
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: 6.3.0
|
|
40
|
+
description: 'The Ruby implementation of Sekishiki: The Secure Purpose-Agnostic Network
|
|
41
|
+
Protocol'
|
|
42
|
+
email:
|
|
43
|
+
- sidneypepo@disroot.org
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- COPYING
|
|
49
|
+
- README.org
|
|
50
|
+
- Rakefile
|
|
51
|
+
- lib/sekishiki.rb
|
|
52
|
+
- lib/sekishiki/crypto.rb
|
|
53
|
+
- lib/sekishiki/packet.rb
|
|
54
|
+
- lib/sekishiki/utils.rb
|
|
55
|
+
- lib/sekishiki/version.rb
|
|
56
|
+
- res/img/packet_format.png
|
|
57
|
+
- res/img/packet_format.svg
|
|
58
|
+
- res/logo/logo.png
|
|
59
|
+
- res/logo/sekishiki.svg
|
|
60
|
+
- sig/crypto.rbs
|
|
61
|
+
- sig/packet.rbs
|
|
62
|
+
- sig/sekishiki.rbs
|
|
63
|
+
- sig/utils.rbs
|
|
64
|
+
- sig/version.rbs
|
|
65
|
+
- why_sekishiki.org
|
|
66
|
+
homepage: https://rubygems.org/gems/sekishiki
|
|
67
|
+
licenses:
|
|
68
|
+
- AGPLV3
|
|
69
|
+
metadata:
|
|
70
|
+
homepage_uri: https://rubygems.org/gems/sekishiki
|
|
71
|
+
source_code_uri: https://github.com/sidneypepo/sekishiki.rb
|
|
72
|
+
rubygems_mfa_required: 'true'
|
|
73
|
+
rdoc_options: []
|
|
74
|
+
require_paths:
|
|
75
|
+
- lib
|
|
76
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - ">="
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: 3.2.0
|
|
81
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
|
+
requirements:
|
|
83
|
+
- - ">="
|
|
84
|
+
- !ruby/object:Gem::Version
|
|
85
|
+
version: '0'
|
|
86
|
+
requirements: []
|
|
87
|
+
rubygems_version: 4.0.4
|
|
88
|
+
specification_version: 4
|
|
89
|
+
summary: 'The Ruby implementation of Sekishiki: The Secure Purpose-Agnostic Network
|
|
90
|
+
Protocol'
|
|
91
|
+
test_files: []
|