pub struct SignedLicense {
pub encoded_payload: String,
pub encoded_signature: String,
}Expand description
A complete signed license ready for distribution.
This structure contains the license payload along with its cryptographic signature. It is what gets serialized and distributed to customers.
§Format
When serialized for distribution, this becomes a JSON object with:
payload: The base64-encoded JSON payloadsignature: The base64-encoded Ed25519 signature
Fields§
§encoded_payload: StringThe license payload, base64-encoded JSON.
encoded_signature: StringThe Ed25519 signature of the payload, base64-encoded.
Implementations§
Source§impl SignedLicense
impl SignedLicense
Sourcepub fn new(encoded_payload: String, encoded_signature: String) -> Self
pub fn new(encoded_payload: String, encoded_signature: String) -> Self
Creates a new signed license from encoded components.
§Arguments
encoded_payload- Base64-encoded JSON payloadencoded_signature- Base64-encoded signature bytes
Trait Implementations§
Source§impl Clone for SignedLicense
impl Clone for SignedLicense
Source§fn clone(&self) -> SignedLicense
fn clone(&self) -> SignedLicense
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SignedLicense
impl Debug for SignedLicense
Source§impl<'de> Deserialize<'de> for SignedLicense
impl<'de> Deserialize<'de> for SignedLicense
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SignedLicense
impl RefUnwindSafe for SignedLicense
impl Send for SignedLicense
impl Sync for SignedLicense
impl Unpin for SignedLicense
impl UnwindSafe for SignedLicense
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more