Skip to content

Commit

Permalink
Make V3 const public (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
giarc3 authored Dec 11, 2023
1 parent f48ffab commit 59d9a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v3/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use protobuf::Message;
const IV_LEN: usize = 12;
const GCM_TAG_LEN: usize = 16;

const V3: u8 = 3u8;
pub const V3: u8 = 3u8;

// [3, b"IRON]
const MAGIC_HEADER_LEN: usize = 5;
Expand Down

0 comments on commit 59d9a1a

Please sign in to comment.