Skip to content

Commit 68a35f1

Browse files
Use usize for KeyLocalRef::key_offset instead of u64 (#253)
1 parent 3f71447 commit 68a35f1

File tree

2 files changed

+23
-10
lines changed

2 files changed

+23
-10
lines changed

rust/rbac-registration/src/cardano/cip509/rbac/role_data.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -137,14 +137,14 @@ impl Decode<'_, ProblemReport> for CborRoleData {
137137

138138
/// Decodes a signing key.
139139
fn decode_signing_key(
140-
d: &mut Decoder, context: &str, report: &ProblemReport,
140+
d: &mut Decoder, context: &str, report: &mut ProblemReport,
141141
) -> Result<Option<KeyLocalRef>, ()> {
142142
if let Err(e) = decode_array_len(d, "RoleSigningKey") {
143143
report.other(&format!("{e:?}"), context);
144144
return Err(());
145145
}
146146

147-
match KeyLocalRef::decode(d, &mut ()) {
147+
match KeyLocalRef::decode(d, report) {
148148
Ok(v) => Ok(Some(v)),
149149
Err(e) => {
150150
report.other(
@@ -158,14 +158,14 @@ fn decode_signing_key(
158158

159159
/// Decodes an encryption key.
160160
fn decode_encryption_key(
161-
d: &mut Decoder, context: &str, report: &ProblemReport,
161+
d: &mut Decoder, context: &str, report: &mut ProblemReport,
162162
) -> Result<Option<KeyLocalRef>, ()> {
163163
if let Err(e) = decode_array_len(d, "RoleEncryptionKey") {
164164
report.other(&format!("{e:?}"), context);
165165
return Err(());
166166
}
167167

168-
match KeyLocalRef::decode(d, &mut ()) {
168+
match KeyLocalRef::decode(d, report) {
169169
Ok(v) => Ok(Some(v)),
170170
Err(e) => {
171171
report.other(

rust/rbac-registration/src/cardano/cip509/types/key_local_ref.rs

+19-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
//! A local key reference.
22
3+
use catalyst_types::problem_report::ProblemReport;
34
use cbork_utils::decode_helper::decode_helper;
45
use minicbor::{decode, Decode, Decoder};
56
use strum_macros::FromRepr;
@@ -12,7 +13,7 @@ pub struct KeyLocalRef {
1213
/// Local reference.
1314
pub local_ref: LocalRefInt,
1415
/// Key offset.
15-
pub key_offset: u64,
16+
pub key_offset: usize,
1617
}
1718

1819
/// Enum of local reference with its associated unsigned integer value.
@@ -27,11 +28,23 @@ pub enum LocalRefInt {
2728
PubKeys = Cip509RbacMetadataInt::PubKeys as u8, // 30
2829
}
2930

30-
impl Decode<'_, ()> for KeyLocalRef {
31-
fn decode(d: &mut Decoder, ctx: &mut ()) -> Result<Self, decode::Error> {
32-
let local_ref = LocalRefInt::from_repr(decode_helper(d, "LocalRef in KeyLocalRef", ctx)?)
33-
.ok_or(decode::Error::message("Invalid local reference"))?;
34-
let key_offset: u64 = decode_helper(d, "KeyOffset in KeyLocalRef", ctx)?;
31+
impl Decode<'_, ProblemReport> for KeyLocalRef {
32+
fn decode(d: &mut Decoder, report: &mut ProblemReport) -> Result<Self, decode::Error> {
33+
let local_ref =
34+
LocalRefInt::from_repr(decode_helper(d, "LocalRef in KeyLocalRef", &mut ())?)
35+
.ok_or(decode::Error::message("Invalid local reference"))?;
36+
let key_offset: u64 = decode_helper(d, "KeyOffset in KeyLocalRef", &mut ())?;
37+
let key_offset = if let Ok(v) = usize::try_from(key_offset) {
38+
v
39+
} else {
40+
report.invalid_value(
41+
"key_offset",
42+
&format!("{key_offset}"),
43+
&format!("Value must be less than {}", usize::MAX),
44+
"KeyLocalRef decoding",
45+
);
46+
0
47+
};
3548
Ok(Self {
3649
local_ref,
3750
key_offset,

0 commit comments

Comments
 (0)