mack-encryption 0.7.1 → 0.7.1.1
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.
- metadata +2 -19
- data/doc/classes/Kernel.html +0 -174
- data/doc/classes/Mack/Utils/Crypt/DefaultWorker.html +0 -212
- data/doc/classes/Mack/Utils/Crypt/Keeper.html +0 -221
- data/doc/classes/Mack.html +0 -109
- data/doc/classes/String.html +0 -190
- data/doc/created.rid +0 -1
- data/doc/files/README.html +0 -111
- data/doc/files/lib/mack-encryption/default_worker_rb.html +0 -101
- data/doc/files/lib/mack-encryption/keeper_rb.html +0 -101
- data/doc/files/lib/mack-encryption/kernel_rb.html +0 -101
- data/doc/files/lib/mack-encryption/string_rb.html +0 -101
- data/doc/files/lib/mack-encryption_rb.html +0 -109
- data/doc/fr_class_index.html +0 -31
- data/doc/fr_file_index.html +0 -32
- data/doc/fr_method_index.html +0 -35
- data/doc/index.html +0 -24
- data/doc/rdoc-style.css +0 -208
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mack-encryption
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.1
|
4
|
+
version: 0.7.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- markbates
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-09-
|
12
|
+
date: 2008-09-14 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -37,23 +37,6 @@ files:
|
|
37
37
|
- lib/mack-encryption/string.rb
|
38
38
|
- lib/mack-encryption.rb
|
39
39
|
- README
|
40
|
-
- doc/classes/Kernel.html
|
41
|
-
- doc/classes/Mack/Utils/Crypt/DefaultWorker.html
|
42
|
-
- doc/classes/Mack/Utils/Crypt/Keeper.html
|
43
|
-
- doc/classes/Mack.html
|
44
|
-
- doc/classes/String.html
|
45
|
-
- doc/created.rid
|
46
|
-
- doc/files/lib/mack-encryption/default_worker_rb.html
|
47
|
-
- doc/files/lib/mack-encryption/keeper_rb.html
|
48
|
-
- doc/files/lib/mack-encryption/kernel_rb.html
|
49
|
-
- doc/files/lib/mack-encryption/string_rb.html
|
50
|
-
- doc/files/lib/mack-encryption_rb.html
|
51
|
-
- doc/files/README.html
|
52
|
-
- doc/fr_class_index.html
|
53
|
-
- doc/fr_file_index.html
|
54
|
-
- doc/fr_method_index.html
|
55
|
-
- doc/index.html
|
56
|
-
- doc/rdoc-style.css
|
57
40
|
has_rdoc: true
|
58
41
|
homepage: http://www.mackframework.com
|
59
42
|
post_install_message:
|
data/doc/classes/Kernel.html
DELETED
@@ -1,174 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
-
<head>
|
8
|
-
<title>Module: Kernel</title>
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
-
<script type="text/javascript">
|
13
|
-
// <![CDATA[
|
14
|
-
|
15
|
-
function popupCode( url ) {
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
-
}
|
18
|
-
|
19
|
-
function toggleCode( id ) {
|
20
|
-
if ( document.getElementById )
|
21
|
-
elem = document.getElementById( id );
|
22
|
-
else if ( document.all )
|
23
|
-
elem = eval( "document.all." + id );
|
24
|
-
else
|
25
|
-
return false;
|
26
|
-
|
27
|
-
elemStyle = elem.style;
|
28
|
-
|
29
|
-
if ( elemStyle.display != "block" ) {
|
30
|
-
elemStyle.display = "block"
|
31
|
-
} else {
|
32
|
-
elemStyle.display = "none"
|
33
|
-
}
|
34
|
-
|
35
|
-
return true;
|
36
|
-
}
|
37
|
-
|
38
|
-
// Make codeblocks hidden by default
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
-
|
41
|
-
// ]]>
|
42
|
-
</script>
|
43
|
-
|
44
|
-
</head>
|
45
|
-
<body>
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
<div id="classHeader">
|
50
|
-
<table class="header-table">
|
51
|
-
<tr class="top-aligned-row">
|
52
|
-
<td><strong>Module</strong></td>
|
53
|
-
<td class="class-name-in-header">Kernel</td>
|
54
|
-
</tr>
|
55
|
-
<tr class="top-aligned-row">
|
56
|
-
<td><strong>In:</strong></td>
|
57
|
-
<td>
|
58
|
-
<a href="../files/lib/mack-encryption/kernel_rb.html">
|
59
|
-
lib/mack-encryption/kernel.rb
|
60
|
-
</a>
|
61
|
-
<br />
|
62
|
-
</td>
|
63
|
-
</tr>
|
64
|
-
|
65
|
-
</table>
|
66
|
-
</div>
|
67
|
-
<!-- banner header -->
|
68
|
-
|
69
|
-
<div id="bodyContent">
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
<div id="contextContent">
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
</div>
|
78
|
-
|
79
|
-
<div id="method-list">
|
80
|
-
<h3 class="section-bar">Methods</h3>
|
81
|
-
|
82
|
-
<div class="name-list">
|
83
|
-
<a href="#M000009">_decrypt</a>
|
84
|
-
<a href="#M000008">_encrypt</a>
|
85
|
-
</div>
|
86
|
-
</div>
|
87
|
-
|
88
|
-
</div>
|
89
|
-
|
90
|
-
|
91
|
-
<!-- if includes -->
|
92
|
-
|
93
|
-
<div id="section">
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
<!-- if method_list -->
|
103
|
-
<div id="methods">
|
104
|
-
<h3 class="section-bar">Public Instance methods</h3>
|
105
|
-
|
106
|
-
<div id="method-M000009" class="method-detail">
|
107
|
-
<a name="M000009"></a>
|
108
|
-
|
109
|
-
<div class="method-heading">
|
110
|
-
<a href="#M000009" class="method-signature">
|
111
|
-
<span class="method-name">_decrypt</span><span class="method-args">(value, worker = :default)</span>
|
112
|
-
</a>
|
113
|
-
</div>
|
114
|
-
|
115
|
-
<div class="method-description">
|
116
|
-
<p>
|
117
|
-
A helper method that calls <a
|
118
|
-
href="Mack/Utils/Crypt/Keeper.html">Mack::Utils::Crypt::Keeper</a> with the
|
119
|
-
specified worker and calls the decrypt method on that worker.
|
120
|
-
</p>
|
121
|
-
<p><a class="source-toggle" href="#"
|
122
|
-
onclick="toggleCode('M000009-source');return false;">[Source]</a></p>
|
123
|
-
<div class="method-source-code" id="M000009-source">
|
124
|
-
<pre>
|
125
|
-
<span class="ruby-comment cmt"># File lib/mack-encryption/kernel.rb, line 11</span>
|
126
|
-
11: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">_decrypt</span>(<span class="ruby-identifier">value</span>, <span class="ruby-identifier">worker</span> = <span class="ruby-identifier">:default</span>)
|
127
|
-
12: <span class="ruby-constant">Mack</span><span class="ruby-operator">::</span><span class="ruby-constant">Utils</span><span class="ruby-operator">::</span><span class="ruby-constant">Crypt</span><span class="ruby-operator">::</span><span class="ruby-constant">Keeper</span>.<span class="ruby-identifier">instance</span>.<span class="ruby-identifier">worker</span>(<span class="ruby-identifier">worker</span>).<span class="ruby-identifier">decrypt</span>(<span class="ruby-identifier">value</span>)
|
128
|
-
13: <span class="ruby-keyword kw">end</span>
|
129
|
-
</pre>
|
130
|
-
</div>
|
131
|
-
</div>
|
132
|
-
</div>
|
133
|
-
|
134
|
-
<div id="method-M000008" class="method-detail">
|
135
|
-
<a name="M000008"></a>
|
136
|
-
|
137
|
-
<div class="method-heading">
|
138
|
-
<a href="#M000008" class="method-signature">
|
139
|
-
<span class="method-name">_encrypt</span><span class="method-args">(value, worker = :default)</span>
|
140
|
-
</a>
|
141
|
-
</div>
|
142
|
-
|
143
|
-
<div class="method-description">
|
144
|
-
<p>
|
145
|
-
A helper method that calls <a
|
146
|
-
href="Mack/Utils/Crypt/Keeper.html">Mack::Utils::Crypt::Keeper</a> with the
|
147
|
-
specified worker and calls the encrypt method on that worker.
|
148
|
-
</p>
|
149
|
-
<p><a class="source-toggle" href="#"
|
150
|
-
onclick="toggleCode('M000008-source');return false;">[Source]</a></p>
|
151
|
-
<div class="method-source-code" id="M000008-source">
|
152
|
-
<pre>
|
153
|
-
<span class="ruby-comment cmt"># File lib/mack-encryption/kernel.rb, line 5</span>
|
154
|
-
5: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">_encrypt</span>(<span class="ruby-identifier">value</span>, <span class="ruby-identifier">worker</span> = <span class="ruby-identifier">:default</span>)
|
155
|
-
6: <span class="ruby-constant">Mack</span><span class="ruby-operator">::</span><span class="ruby-constant">Utils</span><span class="ruby-operator">::</span><span class="ruby-constant">Crypt</span><span class="ruby-operator">::</span><span class="ruby-constant">Keeper</span>.<span class="ruby-identifier">instance</span>.<span class="ruby-identifier">worker</span>(<span class="ruby-identifier">worker</span>).<span class="ruby-identifier">encrypt</span>(<span class="ruby-identifier">value</span>)
|
156
|
-
7: <span class="ruby-keyword kw">end</span>
|
157
|
-
</pre>
|
158
|
-
</div>
|
159
|
-
</div>
|
160
|
-
</div>
|
161
|
-
|
162
|
-
|
163
|
-
</div>
|
164
|
-
|
165
|
-
|
166
|
-
</div>
|
167
|
-
|
168
|
-
|
169
|
-
<div id="validator-badges">
|
170
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
171
|
-
</div>
|
172
|
-
|
173
|
-
</body>
|
174
|
-
</html>
|
@@ -1,212 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
-
<head>
|
8
|
-
<title>Class: Mack::Utils::Crypt::DefaultWorker</title>
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
-
<script type="text/javascript">
|
13
|
-
// <![CDATA[
|
14
|
-
|
15
|
-
function popupCode( url ) {
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
-
}
|
18
|
-
|
19
|
-
function toggleCode( id ) {
|
20
|
-
if ( document.getElementById )
|
21
|
-
elem = document.getElementById( id );
|
22
|
-
else if ( document.all )
|
23
|
-
elem = eval( "document.all." + id );
|
24
|
-
else
|
25
|
-
return false;
|
26
|
-
|
27
|
-
elemStyle = elem.style;
|
28
|
-
|
29
|
-
if ( elemStyle.display != "block" ) {
|
30
|
-
elemStyle.display = "block"
|
31
|
-
} else {
|
32
|
-
elemStyle.display = "none"
|
33
|
-
}
|
34
|
-
|
35
|
-
return true;
|
36
|
-
}
|
37
|
-
|
38
|
-
// Make codeblocks hidden by default
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
-
|
41
|
-
// ]]>
|
42
|
-
</script>
|
43
|
-
|
44
|
-
</head>
|
45
|
-
<body>
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
<div id="classHeader">
|
50
|
-
<table class="header-table">
|
51
|
-
<tr class="top-aligned-row">
|
52
|
-
<td><strong>Class</strong></td>
|
53
|
-
<td class="class-name-in-header">Mack::Utils::Crypt::DefaultWorker</td>
|
54
|
-
</tr>
|
55
|
-
<tr class="top-aligned-row">
|
56
|
-
<td><strong>In:</strong></td>
|
57
|
-
<td>
|
58
|
-
<a href="../../../../files/lib/mack-encryption/default_worker_rb.html">
|
59
|
-
lib/mack-encryption/default_worker.rb
|
60
|
-
</a>
|
61
|
-
<br />
|
62
|
-
</td>
|
63
|
-
</tr>
|
64
|
-
|
65
|
-
<tr class="top-aligned-row">
|
66
|
-
<td><strong>Parent:</strong></td>
|
67
|
-
<td>
|
68
|
-
Object
|
69
|
-
</td>
|
70
|
-
</tr>
|
71
|
-
</table>
|
72
|
-
</div>
|
73
|
-
<!-- banner header -->
|
74
|
-
|
75
|
-
<div id="bodyContent">
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
<div id="contextContent">
|
80
|
-
|
81
|
-
<div id="description">
|
82
|
-
<p>
|
83
|
-
The default worker is one that is used when no other worker is specified or
|
84
|
-
the specified worker does not exist. It uses the EzCrypto library and
|
85
|
-
get‘s it‘s secret key from app_config.default_secret_key
|
86
|
-
</p>
|
87
|
-
|
88
|
-
</div>
|
89
|
-
|
90
|
-
|
91
|
-
</div>
|
92
|
-
|
93
|
-
<div id="method-list">
|
94
|
-
<h3 class="section-bar">Methods</h3>
|
95
|
-
|
96
|
-
<div class="name-list">
|
97
|
-
<a href="#M000007">decrypt</a>
|
98
|
-
<a href="#M000006">encrypt</a>
|
99
|
-
<a href="#M000005">new</a>
|
100
|
-
</div>
|
101
|
-
</div>
|
102
|
-
|
103
|
-
</div>
|
104
|
-
|
105
|
-
|
106
|
-
<!-- if includes -->
|
107
|
-
|
108
|
-
<div id="section">
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
<!-- if method_list -->
|
118
|
-
<div id="methods">
|
119
|
-
<h3 class="section-bar">Public Class methods</h3>
|
120
|
-
|
121
|
-
<div id="method-M000005" class="method-detail">
|
122
|
-
<a name="M000005"></a>
|
123
|
-
|
124
|
-
<div class="method-heading">
|
125
|
-
<a href="#M000005" class="method-signature">
|
126
|
-
<span class="method-name">new</span><span class="method-args">()</span>
|
127
|
-
</a>
|
128
|
-
</div>
|
129
|
-
|
130
|
-
<div class="method-description">
|
131
|
-
<p><a class="source-toggle" href="#"
|
132
|
-
onclick="toggleCode('M000005-source');return false;">[Source]</a></p>
|
133
|
-
<div class="method-source-code" id="M000005-source">
|
134
|
-
<pre>
|
135
|
-
<span class="ruby-comment cmt"># File lib/mack-encryption/default_worker.rb, line 9</span>
|
136
|
-
9: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>
|
137
|
-
10: <span class="ruby-ivar">@aes_key</span> = <span class="ruby-constant">EzCrypto</span><span class="ruby-operator">::</span><span class="ruby-constant">Key</span>.<span class="ruby-identifier">with_password</span>((<span class="ruby-identifier">app_config</span>.<span class="ruby-identifier">default_secret_key</span> <span class="ruby-operator">||</span> (<span class="ruby-constant">String</span>.<span class="ruby-identifier">randomize</span>(<span class="ruby-value">40</span>))), <span class="ruby-constant">Mack</span><span class="ruby-operator">::</span><span class="ruby-constant">VERSION</span>)
|
138
|
-
11: <span class="ruby-keyword kw">end</span>
|
139
|
-
</pre>
|
140
|
-
</div>
|
141
|
-
</div>
|
142
|
-
</div>
|
143
|
-
|
144
|
-
<h3 class="section-bar">Public Instance methods</h3>
|
145
|
-
|
146
|
-
<div id="method-M000007" class="method-detail">
|
147
|
-
<a name="M000007"></a>
|
148
|
-
|
149
|
-
<div class="method-heading">
|
150
|
-
<a href="#M000007" class="method-signature">
|
151
|
-
<span class="method-name">decrypt</span><span class="method-args">(x)</span>
|
152
|
-
</a>
|
153
|
-
</div>
|
154
|
-
|
155
|
-
<div class="method-description">
|
156
|
-
<p>
|
157
|
-
Decrypts a string using the EzCrypto library and the secret key found in
|
158
|
-
app_config.default_secret_key
|
159
|
-
</p>
|
160
|
-
<p><a class="source-toggle" href="#"
|
161
|
-
onclick="toggleCode('M000007-source');return false;">[Source]</a></p>
|
162
|
-
<div class="method-source-code" id="M000007-source">
|
163
|
-
<pre>
|
164
|
-
<span class="ruby-comment cmt"># File lib/mack-encryption/default_worker.rb, line 21</span>
|
165
|
-
21: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">decrypt</span>(<span class="ruby-identifier">x</span>)
|
166
|
-
22: <span class="ruby-ivar">@aes_key</span>.<span class="ruby-identifier">decrypt</span>(<span class="ruby-identifier">x</span>)
|
167
|
-
23: <span class="ruby-keyword kw">end</span>
|
168
|
-
</pre>
|
169
|
-
</div>
|
170
|
-
</div>
|
171
|
-
</div>
|
172
|
-
|
173
|
-
<div id="method-M000006" class="method-detail">
|
174
|
-
<a name="M000006"></a>
|
175
|
-
|
176
|
-
<div class="method-heading">
|
177
|
-
<a href="#M000006" class="method-signature">
|
178
|
-
<span class="method-name">encrypt</span><span class="method-args">(x)</span>
|
179
|
-
</a>
|
180
|
-
</div>
|
181
|
-
|
182
|
-
<div class="method-description">
|
183
|
-
<p>
|
184
|
-
Encrypts a string using the EzCrypto library and the secret key found in
|
185
|
-
app_config.default_secret_key
|
186
|
-
</p>
|
187
|
-
<p><a class="source-toggle" href="#"
|
188
|
-
onclick="toggleCode('M000006-source');return false;">[Source]</a></p>
|
189
|
-
<div class="method-source-code" id="M000006-source">
|
190
|
-
<pre>
|
191
|
-
<span class="ruby-comment cmt"># File lib/mack-encryption/default_worker.rb, line 15</span>
|
192
|
-
15: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">encrypt</span>(<span class="ruby-identifier">x</span>)
|
193
|
-
16: <span class="ruby-ivar">@aes_key</span>.<span class="ruby-identifier">encrypt</span>(<span class="ruby-identifier">x</span>)
|
194
|
-
17: <span class="ruby-keyword kw">end</span>
|
195
|
-
</pre>
|
196
|
-
</div>
|
197
|
-
</div>
|
198
|
-
</div>
|
199
|
-
|
200
|
-
|
201
|
-
</div>
|
202
|
-
|
203
|
-
|
204
|
-
</div>
|
205
|
-
|
206
|
-
|
207
|
-
<div id="validator-badges">
|
208
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
209
|
-
</div>
|
210
|
-
|
211
|
-
</body>
|
212
|
-
</html>
|
@@ -1,221 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
-
<head>
|
8
|
-
<title>Class: Mack::Utils::Crypt::Keeper</title>
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
-
<script type="text/javascript">
|
13
|
-
// <![CDATA[
|
14
|
-
|
15
|
-
function popupCode( url ) {
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
-
}
|
18
|
-
|
19
|
-
function toggleCode( id ) {
|
20
|
-
if ( document.getElementById )
|
21
|
-
elem = document.getElementById( id );
|
22
|
-
else if ( document.all )
|
23
|
-
elem = eval( "document.all." + id );
|
24
|
-
else
|
25
|
-
return false;
|
26
|
-
|
27
|
-
elemStyle = elem.style;
|
28
|
-
|
29
|
-
if ( elemStyle.display != "block" ) {
|
30
|
-
elemStyle.display = "block"
|
31
|
-
} else {
|
32
|
-
elemStyle.display = "none"
|
33
|
-
}
|
34
|
-
|
35
|
-
return true;
|
36
|
-
}
|
37
|
-
|
38
|
-
// Make codeblocks hidden by default
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
-
|
41
|
-
// ]]>
|
42
|
-
</script>
|
43
|
-
|
44
|
-
</head>
|
45
|
-
<body>
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
<div id="classHeader">
|
50
|
-
<table class="header-table">
|
51
|
-
<tr class="top-aligned-row">
|
52
|
-
<td><strong>Class</strong></td>
|
53
|
-
<td class="class-name-in-header">Mack::Utils::Crypt::Keeper</td>
|
54
|
-
</tr>
|
55
|
-
<tr class="top-aligned-row">
|
56
|
-
<td><strong>In:</strong></td>
|
57
|
-
<td>
|
58
|
-
<a href="../../../../files/lib/mack-encryption/keeper_rb.html">
|
59
|
-
lib/mack-encryption/keeper.rb
|
60
|
-
</a>
|
61
|
-
<br />
|
62
|
-
</td>
|
63
|
-
</tr>
|
64
|
-
|
65
|
-
<tr class="top-aligned-row">
|
66
|
-
<td><strong>Parent:</strong></td>
|
67
|
-
<td>
|
68
|
-
Object
|
69
|
-
</td>
|
70
|
-
</tr>
|
71
|
-
</table>
|
72
|
-
</div>
|
73
|
-
<!-- banner header -->
|
74
|
-
|
75
|
-
<div id="bodyContent">
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
<div id="contextContent">
|
80
|
-
|
81
|
-
<div id="description">
|
82
|
-
<p>
|
83
|
-
A singleton class that holds/manages all the workers for the system.
|
84
|
-
</p>
|
85
|
-
<p>
|
86
|
-
A <a href="Keeper.html#M000004">worker</a> must be defined as
|
87
|
-
Mack::Utils::Crypt::<name>Worker and must define an encrypt(value)
|
88
|
-
method and a decrypt(value) method.
|
89
|
-
</p>
|
90
|
-
<p>
|
91
|
-
Example:
|
92
|
-
</p>
|
93
|
-
<pre>
|
94
|
-
class Mack::Utils::Crypt::ReverseWorker
|
95
|
-
def encrypt(x)
|
96
|
-
x.reverse
|
97
|
-
end
|
98
|
-
|
99
|
-
def decrypt(x)
|
100
|
-
x.reverse
|
101
|
-
end
|
102
|
-
end
|
103
|
-
</pre>
|
104
|
-
|
105
|
-
</div>
|
106
|
-
|
107
|
-
|
108
|
-
</div>
|
109
|
-
|
110
|
-
<div id="method-list">
|
111
|
-
<h3 class="section-bar">Methods</h3>
|
112
|
-
|
113
|
-
<div class="name-list">
|
114
|
-
<a href="#M000003">new</a>
|
115
|
-
<a href="#M000004">worker</a>
|
116
|
-
</div>
|
117
|
-
</div>
|
118
|
-
|
119
|
-
</div>
|
120
|
-
|
121
|
-
|
122
|
-
<!-- if includes -->
|
123
|
-
<div id="includes">
|
124
|
-
<h3 class="section-bar">Included Modules</h3>
|
125
|
-
|
126
|
-
<div id="includes-list">
|
127
|
-
<span class="include-name">Singleton</span>
|
128
|
-
</div>
|
129
|
-
</div>
|
130
|
-
|
131
|
-
<div id="section">
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
<!-- if method_list -->
|
141
|
-
<div id="methods">
|
142
|
-
<h3 class="section-bar">Public Class methods</h3>
|
143
|
-
|
144
|
-
<div id="method-M000003" class="method-detail">
|
145
|
-
<a name="M000003"></a>
|
146
|
-
|
147
|
-
<div class="method-heading">
|
148
|
-
<a href="#M000003" class="method-signature">
|
149
|
-
<span class="method-name">new</span><span class="method-args">()</span>
|
150
|
-
</a>
|
151
|
-
</div>
|
152
|
-
|
153
|
-
<div class="method-description">
|
154
|
-
<p><a class="source-toggle" href="#"
|
155
|
-
onclick="toggleCode('M000003-source');return false;">[Source]</a></p>
|
156
|
-
<div class="method-source-code" id="M000003-source">
|
157
|
-
<pre>
|
158
|
-
<span class="ruby-comment cmt"># File lib/mack-encryption/keeper.rb, line 22</span>
|
159
|
-
22: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>
|
160
|
-
23: <span class="ruby-ivar">@crypt_workers_cache</span> = {}
|
161
|
-
24: <span class="ruby-keyword kw">end</span>
|
162
|
-
</pre>
|
163
|
-
</div>
|
164
|
-
</div>
|
165
|
-
</div>
|
166
|
-
|
167
|
-
<h3 class="section-bar">Public Instance methods</h3>
|
168
|
-
|
169
|
-
<div id="method-M000004" class="method-detail">
|
170
|
-
<a name="M000004"></a>
|
171
|
-
|
172
|
-
<div class="method-heading">
|
173
|
-
<a href="#M000004" class="method-signature">
|
174
|
-
<span class="method-name">worker</span><span class="method-args">(key = :default)</span>
|
175
|
-
</a>
|
176
|
-
</div>
|
177
|
-
|
178
|
-
<div class="method-description">
|
179
|
-
<p>
|
180
|
-
Returns a <a href="Keeper.html#M000004">worker</a> object to handle the
|
181
|
-
encrytion/decryption. If the specified <a
|
182
|
-
href="Keeper.html#M000004">worker</a> doesn‘t exist then <a
|
183
|
-
href="DefaultWorker.html">Mack::Utils::Crypt::DefaultWorker</a> is
|
184
|
-
returned.
|
185
|
-
</p>
|
186
|
-
<p><a class="source-toggle" href="#"
|
187
|
-
onclick="toggleCode('M000004-source');return false;">[Source]</a></p>
|
188
|
-
<div class="method-source-code" id="M000004-source">
|
189
|
-
<pre>
|
190
|
-
<span class="ruby-comment cmt"># File lib/mack-encryption/keeper.rb, line 29</span>
|
191
|
-
29: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">worker</span>(<span class="ruby-identifier">key</span> = <span class="ruby-identifier">:default</span>)
|
192
|
-
30: <span class="ruby-identifier">worker</span> = <span class="ruby-ivar">@crypt_workers_cache</span>[<span class="ruby-identifier">key</span>.<span class="ruby-identifier">to_sym</span>]
|
193
|
-
31: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">worker</span>.<span class="ruby-identifier">nil?</span>
|
194
|
-
32: <span class="ruby-identifier">worker_klass</span> = <span class="ruby-identifier">key</span>.<span class="ruby-identifier">to_s</span>.<span class="ruby-identifier">camelcase</span> <span class="ruby-operator">+</span> <span class="ruby-value str">"Worker"</span>
|
195
|
-
33: <span class="ruby-keyword kw">if</span> <span class="ruby-constant">Mack</span><span class="ruby-operator">::</span><span class="ruby-constant">Utils</span><span class="ruby-operator">::</span><span class="ruby-constant">Crypt</span>.<span class="ruby-identifier">const_defined?</span>(<span class="ruby-identifier">worker_klass</span>)
|
196
|
-
34: <span class="ruby-identifier">worker</span> = <span class="ruby-node">"Mack::Utils::Crypt::#{worker_klass}"</span>.<span class="ruby-identifier">constantize</span>.<span class="ruby-identifier">new</span>
|
197
|
-
35: <span class="ruby-keyword kw">else</span>
|
198
|
-
36: <span class="ruby-identifier">worker</span> = <span class="ruby-constant">Mack</span><span class="ruby-operator">::</span><span class="ruby-constant">Utils</span><span class="ruby-operator">::</span><span class="ruby-constant">Crypt</span><span class="ruby-operator">::</span><span class="ruby-constant">DefaultWorker</span>.<span class="ruby-identifier">new</span>
|
199
|
-
37: <span class="ruby-keyword kw">end</span>
|
200
|
-
38: <span class="ruby-ivar">@crypt_workers_cache</span>[<span class="ruby-identifier">key</span>.<span class="ruby-identifier">to_sym</span>] = <span class="ruby-identifier">worker</span>
|
201
|
-
39: <span class="ruby-keyword kw">end</span>
|
202
|
-
40: <span class="ruby-identifier">worker</span>
|
203
|
-
41: <span class="ruby-keyword kw">end</span>
|
204
|
-
</pre>
|
205
|
-
</div>
|
206
|
-
</div>
|
207
|
-
</div>
|
208
|
-
|
209
|
-
|
210
|
-
</div>
|
211
|
-
|
212
|
-
|
213
|
-
</div>
|
214
|
-
|
215
|
-
|
216
|
-
<div id="validator-badges">
|
217
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
218
|
-
</div>
|
219
|
-
|
220
|
-
</body>
|
221
|
-
</html>
|