You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use asn1_rs::{Any,DerSequence,Tag,ToDer};#[derive(Debug,DerSequence)]structBla<'a>{some:Any<'a>,something:&'a [u8],}fnmain(){let bla = Bla{some:Any::from_tag_and_data(Tag::Oid,&[1,2,3]),something:&[1,2,3],};// this call?
bla.to_der_vec()}
The text was updated successfully, but these errors were encountered:
Hi, is there an API to auto-derive ToDer?
The text was updated successfully, but these errors were encountered: