How do I print the value stored in BIO object “time”. Basically I need to extract signed time.
ASN1_TYPE *asn1obj;
if (!(asn1obj = PKCS7_get_signed_attribute(si, NID_pkcs9_signingTime))) {
NSLog(@"Failed to retireve the signing time");
}else{
if (asn1obj->type == V_ASN1_UTCTIME) {
BIO * time = data=BIO_new(BIO_s_bio());
i = ASN1_UTCTIME_print(time,asn1obj->value.utctime);
NSLog(@"return value from ASN1_UTCTIME_print %d ",i);
}
}
Thanks
This is how it get working
Hope this helps 🙂