File tree Expand file tree Collapse file tree 6 files changed +126
-0
lines changed Expand file tree Collapse file tree 6 files changed +126
-0
lines changed Original file line number Diff line number Diff line change @@ -322,6 +322,14 @@ entries:
322
322
url : " /MbedTLS_CMAC.html"
323
323
output : web pdf
324
324
type : homepage
325
+ - title : MbedTLS::Cipher
326
+ url : " /MbedTLS_Cipher.html"
327
+ output : web pdf
328
+ type : homepage
329
+ - title : MbedTLS::Digest
330
+ url : " /MbedTLS_Digest.html"
331
+ output : web pdf
332
+ type : homepage
325
333
- title : PicoRubyVM
326
334
url : " /PicoRubyVM.html"
327
335
output : web pdf
@@ -342,6 +350,10 @@ entries:
342
350
url : " /Prism_ParseResult.html"
343
351
output : web pdf
344
352
type : homepage
353
+ - title : RNG
354
+ url : " /RNG.html"
355
+ output : web pdf
356
+ type : homepage
345
357
- title : RTD
346
358
url : " /RTD.html"
347
359
output : web pdf
Original file line number Diff line number Diff line change @@ -7,3 +7,14 @@ sidebar: picoruby_sidebar
7
7
permalink : Base16.html
8
8
folder : rbs_doc
9
9
---
10
+ ## Singleton methods
11
+ ### decode16
12
+
13
+ ``` ruby
14
+ Base16 .decode16(String ) -> String
15
+ ```
16
+ ### encode16
17
+
18
+ ``` ruby
19
+ Base16 .encode16(String ) -> String
20
+ ```
Original file line number Diff line number Diff line change @@ -7,3 +7,14 @@ sidebar: picoruby_sidebar
7
7
permalink : Base64.html
8
8
folder : rbs_doc
9
9
---
10
+ ## Singleton methods
11
+ ### decode64
12
+
13
+ ``` ruby
14
+ Base64 .decode64(String ) -> String
15
+ ```
16
+ ### encode64
17
+
18
+ ``` ruby
19
+ Base64 .encode64(String ) -> String
20
+ ```
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : MbedTLS::Cipher
3
+ keywords : MbedTLS::Cipher
4
+ tags : [class]
5
+ summary : MbedTLS::Cipher class of PicoRuby
6
+ sidebar : picoruby_sidebar
7
+ permalink : MbedTLS_Cipher.html
8
+ folder : rbs_doc
9
+ ---
10
+ ## Singleton methods
11
+ ### _ init_ctx
12
+
13
+ ``` ruby
14
+ MbedTLS ::Cipher ._init_ctx (Integer , String , Integer ) -> MbedTLS ::Cipher
15
+ ```
16
+ ### new
17
+
18
+ ``` ruby
19
+ MbedTLS ::Cipher .new (untyped cipher_suite, untyped key, untyped operation) -> MbedTLS ::Cipher
20
+ ```
21
+ ## Instance methods
22
+ ### check_tag
23
+
24
+ ``` ruby
25
+ instance.check_tag(String ) -> bool
26
+ ```
27
+ ### finish
28
+
29
+ ``` ruby
30
+ instance.finish() -> String
31
+ ```
32
+ ### update
33
+
34
+ ``` ruby
35
+ instance.update(String ) -> String
36
+ ```
37
+ ### update_ad
38
+
39
+ ``` ruby
40
+ instance.update_ad(String ) -> MbedTLS ::Cipher
41
+ ```
42
+ ### write_tag
43
+
44
+ ``` ruby
45
+ instance.write_tag() -> String
46
+ ```
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : MbedTLS::Digest
3
+ keywords : MbedTLS::Digest
4
+ tags : [class]
5
+ summary : MbedTLS::Digest class of PicoRuby
6
+ sidebar : picoruby_sidebar
7
+ permalink : MbedTLS_Digest.html
8
+ folder : rbs_doc
9
+ ---
10
+ ## Singleton methods
11
+ ### new
12
+
13
+ ``` ruby
14
+ MbedTLS ::Digest .new (untyped algorithm) -> MbedTLS ::Digest
15
+ ```
16
+ ## Instance methods
17
+ ### finish
18
+
19
+ ``` ruby
20
+ instance.finish() -> String
21
+ ```
22
+ ### update
23
+
24
+ ``` ruby
25
+ instance.update(String ) -> MbedTLS ::Digest
26
+ ```
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : RNG
3
+ keywords : RNG
4
+ tags : [class]
5
+ summary : RNG class of PicoRuby
6
+ sidebar : picoruby_sidebar
7
+ permalink : RNG.html
8
+ folder : rbs_doc
9
+ ---
10
+ ## Singleton methods
11
+ ### random_int
12
+
13
+ ``` ruby
14
+ RNG .random_int-> Integer
15
+ ```
16
+ ### random_string
17
+
18
+ ``` ruby
19
+ RNG .random_string(Integer ) -> String
20
+ ```
You can’t perform that action at this time.
0 commit comments