示例#1
0
int EVP_PKEY_add1_attr_by_txt(EVP_PKEY *key,
      const char *attrname, int type,
      const unsigned char *bytes, int len)
{
  if(X509at_add1_attr_by_txt(&key->attributes, attrname,
        type, bytes, len)) return 1;
  return 0;
}
示例#2
0
int CMS_signed_add1_attr_by_txt(CMS_SignerInfo *si,
                                const char *attrname, int type,
                                const void *bytes, int len)
{
    if (X509at_add1_attr_by_txt(&si->signedAttrs, attrname, type, bytes, len))
        return 1;
    return 0;
}