-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
428 lines (341 loc) · 23.8 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Totoval</title>
<link>https://totoval.com/</link>
<description>Recent content on Totoval</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Fri, 31 May 2019 16:38:44 +0800</lastBuildDate>
<atom:link href="https://totoval.com/index.xml" rel="self" type="application/rss+xml" />
<item>
<title></title>
<link>https://totoval.com/docs/architecture/architecture/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/architecture/architecture/</guid>
<description>Architecture Totoval has two separated parts, Totoval repo and Totoval Framework repo.
Totoval Totoval repo is the main repo which defines the directory mapping of Totoval. It has 7 parts currently.
app
The app is a directory which contains all the component that your project will use. http
controllers middleware requests models cache jobs events listeners policies console commands
schedule bootstrap</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/architecture/embedded_modules/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/architecture/embedded_modules/</guid>
<description>Embedded Modules Totoval refers to https://github.com/totoval/totoval/blob/master/go.mod
module totoval require ( github.com/golang/protobuf v1.3.1 github.com/jinzhu/gorm v1.9.2 github.com/totoval/framework v0.9.0 github.com/urfave/cli v1.20.0 ) Framework refers to https://github.com/totoval/framework/blob/master/go.mod
module github.com/totoval/framework require ( cloud.google.com/go v0.36.0 // indirect github.com/davecgh/go-spew v1.1.1 github.com/denisenkom/go-mssqldb v0.0.0-20190204142019-df6d76eb9289 // indirect github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect github.com/fatih/color v1.7.0 github.com/getsentry/raven-go v0.2.0 github.com/gin-contrib/sentry v0.0.0-20190528141903-48a399dfd39f github.com/gin-gonic/gin v1.4.0 github.com/go-playground/locales v0.12.1 github.com/go-playground/universal-translator v0.16.0 github.com/go-redis/redis v6.15.2+incompatible github.com/go-sql-driver/mysql v1.4.1 // indirect github.com/gofrs/uuid v3.2.0+incompatible // indirect github.com/golang/protobuf v1.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/basics/controllers/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/basics/controllers/</guid>
<description>Controllers Controller is the last handle in one route. It process the request and return the processed result out.
A Controller must embedded with BaseController defined in github.com/totoval/framework/http/controller.
package controllers import ( &#34;net/http&#34; &#34;github.com/gin-gonic/gin&#34; &#34;github.com/totoval/framework/helpers/m&#34; &#34;github.com/totoval/framework/helpers/ptr&#34; &#34;github.com/totoval/framework/http/controller&#34; &#34;github.com/totoval/framework/model&#34; &#34;totoval/app/models&#34; ) type User struct { controller.BaseController } func (u *User) Info(c *gin.Context) { if u.Scan(c) { return } user := u.User().Value().(*models.User) user.Password = ptr.String(&#34;&#34;) // remove password value for response rendering c.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/basics/error_handling/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/basics/error_handling/</guid>
<description> Error Handling </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/basics/logging/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/basics/logging/</guid>
<description>Logging Totoval provide an easy use logging helpers with log level supported.
Packages github.com/totoval/framework/helpers/log github.com/totoval/framework/helpers/toto Usage log.Info(&#34;this is the message&#34;, toto.V{&#34;key1&#34;: value1, &#34;key2&#34;: value2}) log.Warn(&#34;this is the message&#34;, toto.V{&#34;key1&#34;: value1, &#34;key2&#34;: value2}) log.Fatal(&#34;this is the message&#34;, toto.V{&#34;key1&#34;: value1, &#34;key2&#34;: value2}) log.Debug(&#34;this is the message&#34;, toto.V{&#34;key1&#34;: value1, &#34;key2&#34;: value2}) log.Panic(&#34;this is the message&#34;, toto.V{&#34;key1&#34;: value1, &#34;key2&#34;: value2}) log.Trace(&#34;this is the message&#34;, toto.V{&#34;key1&#34;: value1, &#34;key2&#34;: value2}) log.Error(errors.New(&#34;this is the error message&#34;), toto.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/basics/middleware/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/basics/middleware/</guid>
<description>Middleware Middleware is also a route handler.
Middleware will proccess the request before controller, so it cannot be the last handler in a route.
package middleware import ( &#34;github.com/totoval/framework/helpers/log&#34; &#34;github.com/totoval/framework/logs&#34; &#34;github.com/gin-gonic/gin&#34; &#34;github.com/totoval/framework/helpers/zone&#34; ) func Example() gin.HandlerFunc { return func(c *gin.Context) { t := zone.Now() // Set example variable c.Set(&#34;example&#34;, &#34;12345&#34;) // before request c.Next() // after request latency := zone.Since(t) log.Info(&#34;latency&#34;, logs.Field{&#34;latency&#34;: latency}) // access the status we are sending status := c.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/basics/requests/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/basics/requests/</guid>
<description>Requests Requests is a place for placing the app&rsquo;s request validation struct.
Requests package requests type UserLogin struct { Email string `json:&#34;email&#34; binding:&#34;required,email&#34;` Password string `json:&#34;password&#34; binding:&#34;required,min=8,max=24&#34;` } Use Controller All the controllers are embedded with BaseController, So there&rsquo;s a func called Validate, Using this func to validate the request with the Requests struct. The returned value isAbort is about that the validate status. if isAbort is true, simply write a return at the controller&rsquo;s handle function body.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/basics/responses/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/basics/responses/</guid>
<description>Responses Totoval is a Gin basing api web-framework, the response format is compatible with Gin, more at docs.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/basics/routing/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/basics/routing/</guid>
<description>Routing Route Route has 3 params.
* One is the request method, which defines what request method could attach this route.
* One is the request uri, which defines what request could attach this route.
* Another one is the handlers, which defines how the program will handle the matched route request. you could define multiple handles for one route.
group.POST(&#34;/hello&#34;, func(c *gin.Context){ c.JSON(http.StatusOK, nil) return }) RouteGroup Route group is a container, which you could defined a path prefix, and put a bunch of routes in it.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/basics/validation/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/basics/validation/</guid>
<description>Validation Totoval validation uses gopkg.in/go-playground/validator.v9.
Request Validation Request validation file should be placed at app/http/requests folder. And used at app/http/controllers.
Here&rsquo;s a request validation file example for validate user login request:
package requests type UserLogin struct { Email string `json:&#34;email&#34; binding:&#34;required,email&#34;` Password string `json:&#34;password&#34; binding:&#34;required,min=8,max=24&#34;` } Using at controllers:
func (l *Login) Login(c *request.Context) { // validate and assign requestData var requestData requests.UserLogin if !l.Validate(c, &amp;requestData, true) { return } .</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/database/getting_started/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/database/getting_started/</guid>
<description> Getting Started </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/database/migrations/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/database/migrations/</guid>
<description> Migrations </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/database/query_builder/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/database/query_builder/</guid>
<description> Query Builder </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/database/redis/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/database/redis/</guid>
<description> Redis </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/deeper/artisan_console/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/deeper/artisan_console/</guid>
<description> Artisan Console </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/deeper/cache/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/deeper/cache/</guid>
<description> Cache </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/deeper/events/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/deeper/events/</guid>
<description> Events </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/deeper/helpers/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/deeper/helpers/</guid>
<description> Helpers </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/deeper/jobs/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/deeper/jobs/</guid>
<description>Jobs Queue Configuration nsq example docker-compose.yaml:
version: &#39;3&#39; services: nsqlookupd: image: nsqio/nsq:v1.1.0 container_name: nsqlookupd command: /nsqlookupd expose: - &#34;4160&#34; - &#34;4161&#34; ports: - &#34;4161:4161&#34; nsqd: image: nsqio/nsq:v1.1.0 container_name: nsqd command: /nsqd --lookupd-tcp-address=nsqlookupd:4160 --data-path=/data volumes: - &#34;/YOUR-DATA-PATH:/data&#34; depends_on: - nsqlookupd expose: - &#34;4150&#34; - &#34;4151&#34; ports: - &#34;4150:4150&#34; nsqadmin: image: nsqio/nsq:v1.1.0 container_name: nsqadmin command: /nsqadmin --lookupd-http-address=nsqlookupd:4161 depends_on: - nsqlookupd expose: - &#34;4171&#34; ports: - &#34;4171:4171&#34; Attention: Need to change the nsqd volume YOUR-DATA-PATH field to your own.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/deeper/scheduler/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/deeper/scheduler/</guid>
<description> Scheduler </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/frontend/localization/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/frontend/localization/</guid>
<description> Localization </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/frontend/views/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/frontend/views/</guid>
<description> Views </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/getting_started/configuration/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/getting_started/configuration/</guid>
<description>Configuration Minimal Configuration Use default env file
mv .env.example.json .env.json Startup your mysql instance if you don&rsquo;t have
Here&rsquo;s a docker example:
docker run --name mysql --rm -it \ -p \&#34;3306:3306\&#34; \ -v \&#34;${HOME}/{YOUR-MYSQL-PERSISTENCE-DATA-PATH}/mysql:/var/lib/mysql\&#34; \ -e \&#34;MYSQL_ROOT_PASSWORD={YOUR-MYSQL-ROOT-PASSWORD}\&#34; \ mysql:latest Let&rsquo;s start your truck!
go run main.go Environment File Configuration Here&rsquo;s an example of .env.json:
{ &#34;APP_NAME&#34;: &#34;Totoval&#34;, &#34;APP_ENV&#34;: &#34;develop&#34;, &#34;APP_DEBUG&#34;: true, &#34;APP_PORT&#34;: 8080, &#34;APP_LOCALE&#34;: &#34;en&#34;, &#34;APP_KEY&#34;: &#34;YOUR-APP-KEY&#34;, &#34;DB_CONNECTION&#34;: &#34;mysql&#34;, &#34;DB_HOST&#34;: &#34;127.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/getting_started/installation/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/getting_started/installation/</guid>
<description> Installation Server Requirements System: linux, macos, windows, arm&hellip; Cpu: 1 Memory: 128MB Disk: 100MB Install Download
git clone [email protected]:totoval/totoval.git ./YOUR-PROJECT-NAME Remove .git and reinit it
cd ./YOUR-PROJECT-NAME rm -rf .git git init Use As Template Github Fork https://github.com/totoval/totoval Click Use this template Button at here </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/internal_types/bigfloat/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/internal_types/bigfloat/</guid>
<description> BigFloat </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/internal_types/bigint/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/internal_types/bigint/</guid>
<description> BigInt </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/introduction/introduction/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/introduction/introduction/</guid>
<description>Introduction Totoval is an API web framework that helps Golang engineers build a performance-boiled project quickly, easily, and securely. It is more like a scaffolding, respecting Golang&rsquo;s programming philosophy, supported by a number of highly acclaimed, high-performance core components, as well as many easy-to-use components to quickly adapt to more business scenarios. We also believe that development must be an enjoyable and creative experience. Totoval frees developers from the painful coding process.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/introduction/release_notes/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/introduction/release_notes/</guid>
<description>Release Notes Versioning Scheme Totoval&rsquo;s versioning scheme maintains the following convention: paradigm.major.minior-hotfix-n. For now, Major framework release v1.x.x are released when totoval is ready for production use, while minio release my be released as often as new feature has been added. Minor releases should never contain breaking changes.
When referencing the Totoval framework from your application, you should always use the version which Totoval is used. for example, Totoval&rsquo;s version is v0.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/orm/model_helpers/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/orm/model_helpers/</guid>
<description>Model Helpers Create import ( &#34;github.com/totoval/framework/helpers/m&#34; &#34;fmt&#34; ) func Create(){ user := User{ Username: ptr.String(&#34;totoval&#34;), Password: ptr.String(&#34;passw0rd&#34;), } if err := m.H().Create(&amp;user); err != nil{ panic(err) } fmt.Println(user) } Save import ( &#34;github.com/totoval/framework/helpers/m&#34; &#34;github.com/totoval/framework/helpers/ptr&#34; &#34;github.com/totoval/framework/model/types/null&#34; &#34;fmt&#34; ) func Save(){ user := User{ Id: 1, Username: &#34;totoval&#34;, Password: &#34;passw0rd&#34;, Nickname: &#34;mynick&#34;, } userModified := User{ Password: &#34;passw0rd123&#34;, // modify password to `passw0rd123` } if err := m.H().Save(&amp;user, userModified, User{ Nickname: null.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/orm/models/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/orm/models/</guid>
<description> Models </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/orm/mutators/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/orm/mutators/</guid>
<description>Mutators Introduction Accessors and mutators allow you to format Eloquent attribute values when you retrieve or set them on model instances. For example, you may want to get user information from database and response it to the browser, but you don&rsquo;t want users&rsquo; password field exposed out.
Accessors &amp; Mutators Defining An Accessor To define an accessor, create a GetFooAttribute method on your model where Foo is the &ldquo;camel&rdquo; cased name of the field in the model you wish to access.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/orm/pagination/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/orm/pagination/</guid>
<description> Pagination </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/orm/query_builder/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/orm/query_builder/</guid>
<description>Query Builder Q m.H().Q([]model.Filter{{Key: &#34;username&#34;, Op: &#34;=&#34;, Val: username}}, []model.Sort{}, limit, withTrashed).</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/others/biu/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/others/biu/</guid>
<description> Biu </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/others/infinity_user_affiliation_system/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/others/infinity_user_affiliation_system/</guid>
<description> Infinity User Affiliation System </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/others/sentry/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/others/sentry/</guid>
<description> Sentry Introduction Sentry is an open-source error tracking system that helps developers monitor and fix crashes in real time. Iterate continuously. Boost efficiency. Improve user experience.
Configuration To enable, add these json below to .env.json
&#34;SENTRY_ENABLE&#34;: true, &#34;SENTRY_HOST&#34;: &#34;YOUR-SENTRY-HOST&#34;, &#34;SENTRY_KEY&#34;: &#34;YOUR-SENTRY-KEY&#34;, &#34;SENTRY_SECRET&#34;: &#34;YOUR-SENTRY-SECRET&#34;, &#34;SENTRY_PROJECT&#34;: &#34;YOUR-SENTRY-PROJECT&#34;,</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/security/authentication/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/security/authentication/</guid>
<description> Authentication </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/security/authorization/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/security/authorization/</guid>
<description>Authorization Introduction In addition to providing authentication services out of the box, Totoval also provides a simple way to authorize user actions against a given resource.
Think of policies like routes and controllers, Policies provide a simple interface which defined the resource that could or not be attached by user using which action. Such as a post should only be edited by its&rsquo; creator.
Creating Polices Polices are structs that organize authorization logic around a particular model or resource.</description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/security/email_verification/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/security/email_verification/</guid>
<description> Email Verification </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/security/encryption/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/security/encryption/</guid>
<description> Encryption </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/security/hashing/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/security/hashing/</guid>
<description> Hashing </description>
</item>
<item>
<title></title>
<link>https://totoval.com/docs/security/password_reset/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://totoval.com/docs/security/password_reset/</guid>
<description> Password Reset </description>
</item>
</channel>
</rss>