@@ -10,14 +10,34 @@ extern "C" {
10
10
#[ doc = "" ]
11
11
#[ doc = "*This API requires the following crate features to be activated: `AesGcmParams`*" ]
12
12
pub type AesGcmParams ;
13
+ #[ doc = "Get the `name` field of this object." ]
14
+ #[ doc = "" ]
15
+ #[ doc = "*This API requires the following crate features to be activated: `AesGcmParams`*" ]
16
+ #[ wasm_bindgen( method, getter = "name" ) ]
17
+ pub fn get_name ( this : & AesGcmParams ) -> String ;
13
18
#[ wasm_bindgen( method, setter = "name" ) ]
14
- fn name_shim ( this : & AesGcmParams , val : & str ) ;
19
+ fn set_name ( this : & AesGcmParams , val : & str ) ;
20
+ #[ doc = "Get the `additionalData` field of this object." ]
21
+ #[ doc = "" ]
22
+ #[ doc = "*This API requires the following crate features to be activated: `AesGcmParams`*" ]
23
+ #[ wasm_bindgen( method, getter = "additionalData" ) ]
24
+ pub fn get_additional_data ( this : & AesGcmParams ) -> Option < :: js_sys:: Object > ;
15
25
#[ wasm_bindgen( method, setter = "additionalData" ) ]
16
- fn additional_data_shim ( this : & AesGcmParams , val : & :: js_sys:: Object ) ;
26
+ fn set_additional_data ( this : & AesGcmParams , val : & :: js_sys:: Object ) ;
27
+ #[ doc = "Get the `iv` field of this object." ]
28
+ #[ doc = "" ]
29
+ #[ doc = "*This API requires the following crate features to be activated: `AesGcmParams`*" ]
30
+ #[ wasm_bindgen( method, getter = "iv" ) ]
31
+ pub fn get_iv ( this : & AesGcmParams ) -> :: js_sys:: Object ;
17
32
#[ wasm_bindgen( method, setter = "iv" ) ]
18
- fn iv_shim ( this : & AesGcmParams , val : & :: js_sys:: Object ) ;
33
+ fn set_iv ( this : & AesGcmParams , val : & :: js_sys:: Object ) ;
34
+ #[ doc = "Get the `tagLength` field of this object." ]
35
+ #[ doc = "" ]
36
+ #[ doc = "*This API requires the following crate features to be activated: `AesGcmParams`*" ]
37
+ #[ wasm_bindgen( method, getter = "tagLength" ) ]
38
+ pub fn get_tag_length ( this : & AesGcmParams ) -> Option < u8 > ;
19
39
#[ wasm_bindgen( method, setter = "tagLength" ) ]
20
- fn tag_length_shim ( this : & AesGcmParams , val : u8 ) ;
40
+ fn set_tag_length ( this : & AesGcmParams , val : u8 ) ;
21
41
}
22
42
impl AesGcmParams {
23
43
#[ doc = "Construct a new `AesGcmParams`." ]
@@ -34,28 +54,28 @@ impl AesGcmParams {
34
54
#[ doc = "" ]
35
55
#[ doc = "*This API requires the following crate features to be activated: `AesGcmParams`*" ]
36
56
pub fn name ( & mut self , val : & str ) -> & mut Self {
37
- self . name_shim ( val) ;
57
+ self . set_name ( val) ;
38
58
self
39
59
}
40
60
#[ doc = "Change the `additionalData` field of this object." ]
41
61
#[ doc = "" ]
42
62
#[ doc = "*This API requires the following crate features to be activated: `AesGcmParams`*" ]
43
63
pub fn additional_data ( & mut self , val : & :: js_sys:: Object ) -> & mut Self {
44
- self . additional_data_shim ( val) ;
64
+ self . set_additional_data ( val) ;
45
65
self
46
66
}
47
67
#[ doc = "Change the `iv` field of this object." ]
48
68
#[ doc = "" ]
49
69
#[ doc = "*This API requires the following crate features to be activated: `AesGcmParams`*" ]
50
70
pub fn iv ( & mut self , val : & :: js_sys:: Object ) -> & mut Self {
51
- self . iv_shim ( val) ;
71
+ self . set_iv ( val) ;
52
72
self
53
73
}
54
74
#[ doc = "Change the `tagLength` field of this object." ]
55
75
#[ doc = "" ]
56
76
#[ doc = "*This API requires the following crate features to be activated: `AesGcmParams`*" ]
57
77
pub fn tag_length ( & mut self , val : u8 ) -> & mut Self {
58
- self . tag_length_shim ( val) ;
78
+ self . set_tag_length ( val) ;
59
79
self
60
80
}
61
81
}
0 commit comments