We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
serde
1 parent 9433d57 commit 31ebc99Copy full SHA for 31ebc99
ecdsa/src/lib.rs
@@ -192,8 +192,8 @@ pub type SignatureBytes<C> = GenericArray<u8, SignatureSize<C>>;
192
/// serializing and deserializing ECDSA signatures using the `Serialize` and
193
/// `Deserialize` traits.
194
///
195
-/// The serialization uses a 64-byte fixed encoding when used with binary
196
-/// formats, and a hexadecimal encoding when used with text formats.
+/// The serialization uses a hexadecimal encoding when used with
+/// "human readable" text formats, and a binary encoding otherwise.
197
#[derive(Clone, Eq, PartialEq)]
198
pub struct Signature<C: PrimeCurve> {
199
r: ScalarPrimitive<C>,
0 commit comments