Skip to content

Commit 0f2a5a6

Browse files
committed
update
1 parent 1721dfd commit 0f2a5a6

File tree

6 files changed

+126
-0
lines changed

6 files changed

+126
-0
lines changed

_data/sidebars/picoruby_sidebar.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,14 @@ entries:
322322
url: "/MbedTLS_CMAC.html"
323323
output: web pdf
324324
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
325333
- title: PicoRubyVM
326334
url: "/PicoRubyVM.html"
327335
output: web pdf
@@ -342,6 +350,10 @@ entries:
342350
url: "/Prism_ParseResult.html"
343351
output: web pdf
344352
type: homepage
353+
- title: RNG
354+
url: "/RNG.html"
355+
output: web pdf
356+
type: homepage
345357
- title: RTD
346358
url: "/RTD.html"
347359
output: web pdf

pages/rbs_doc/Base16.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,14 @@ sidebar: picoruby_sidebar
77
permalink: Base16.html
88
folder: rbs_doc
99
---
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+
```

pages/rbs_doc/Base64.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,14 @@ sidebar: picoruby_sidebar
77
permalink: Base64.html
88
folder: rbs_doc
99
---
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+
```

pages/rbs_doc/MbedTLS_Cipher.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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+
```

pages/rbs_doc/MbedTLS_Digest.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
```

pages/rbs_doc/RNG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
```

0 commit comments

Comments
 (0)