aboutsummaryrefslogtreecommitdiffstats
path: root/src/per_curve/eddsa.tmpl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/per_curve/eddsa.tmpl.hxx')
-rw-r--r--src/per_curve/eddsa.tmpl.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/per_curve/eddsa.tmpl.hxx b/src/per_curve/eddsa.tmpl.hxx
index 1d15e71..7adde57 100644
--- a/src/per_curve/eddsa.tmpl.hxx
+++ b/src/per_curve/eddsa.tmpl.hxx
@@ -130,7 +130,7 @@ public:
message.size(),
0,
context.data(),
- context.size()
+ static_cast<uint8_t>(context.size())
);
return out;
}
@@ -147,7 +147,7 @@ public:
((const CRTP*)this)->keypair_,
(const decaf_ed$(gf_shortname)_prehash_ctx_s*)ph.wrapped,
ph.context_.data(),
- ph.context_.size()
+ static_cast<uint8_t>(ph.context_.size())
);
return out;
}
@@ -266,7 +266,7 @@ public:
message.size(),
0,
context.data(),
- context.size()
+ static_cast<uint8_t>(context.size())
);
}
@@ -319,7 +319,7 @@ public:
((const CRTP*)this)->pub_.data(),
(const decaf_ed$(gf_shortname)_prehash_ctx_s*)ph.wrapped,
ph.context_.data(),
- ph.context_.size()
+ static_cast<uint8_t>(ph.context_.size())
)) {
throw CryptoException();
}