bool Test_cn_cbor_array_replace() { cn_cbor * pRoot; cn_cbor * pItem; // Cases that are not currently covered // 1. Pass in invalid arguements cn_cbor_array_replace(NULL, NULL, 0, CBOR_CONTEXT_PARAM_COMMA NULL); // 2. Insert 0 item with no items currently in the list pRoot = cn_cbor_array_create(CBOR_CONTEXT_PARAM_COMMA NULL); pItem = cn_cbor_int_create(5, CBOR_CONTEXT_PARAM_COMMA NULL); cn_cbor_array_replace(pRoot, pItem, 0, CBOR_CONTEXT_PARAM_COMMA NULL); // 3. Insert 0 item w/ exactly one item in the list pItem = cn_cbor_int_create(6, CBOR_CONTEXT_PARAM_COMMA NULL); cn_cbor_array_replace(pRoot, pItem, 0, CBOR_CONTEXT_PARAM_COMMA NULL); // 4. The last item in the array pItem = cn_cbor_int_create(7, CBOR_CONTEXT_PARAM_COMMA NULL); cn_cbor_array_replace(pRoot, pItem, 1, CBOR_CONTEXT_PARAM_COMMA NULL); pItem = cn_cbor_int_create(8, CBOR_CONTEXT_PARAM_COMMA NULL); cn_cbor_array_replace(pRoot, pItem, 1, CBOR_CONTEXT_PARAM_COMMA NULL); return true; }
bool _COSE_Init(COSE* pobj, int msgType, CBOR_CONTEXT_COMMA cose_errback * perr) { cn_cbor_errback errState;; #ifdef USE_CBOR_CONTEXT if (context != NULL) pobj->m_allocContext = *context; #endif pobj->m_protectedMap = cn_cbor_map_create(CBOR_CONTEXT_PARAM_COMMA &errState); CHECK_CONDITION_CBOR(pobj->m_protectedMap != NULL, errState); pobj->m_dontSendMap = cn_cbor_map_create(CBOR_CONTEXT_PARAM_COMMA &errState); CHECK_CONDITION_CBOR(pobj->m_dontSendMap != NULL, errState); pobj->m_cbor = cn_cbor_array_create(CBOR_CONTEXT_PARAM_COMMA &errState); CHECK_CONDITION_CBOR(pobj->m_cbor != NULL, errState); pobj->m_ownMsg = 1; #ifdef TAG_IN_ARRAY if (msgType > 0) { cn_cbor * cn = cn_cbor_int_create(msgType, CBOR_CONTEXT_PARAM_COMMA &errState); CHECK_CONDITION_CBOR(cn != NULL, errState); CHECK_CONDITION_CBOR(cn_cbor_array_append(pobj->m_cbor, cn, &errState), errState); pobj->m_msgType = msgType; } #else pobj->m_msgType = msgType; #endif pobj->m_unprotectMap = cn_cbor_map_create(CBOR_CONTEXT_PARAM_COMMA &errState); CHECK_CONDITION_CBOR(pobj->m_unprotectMap != NULL, errState); CHECK_CONDITION_CBOR(_COSE_array_replace(pobj, pobj->m_unprotectMap, INDEX_UNPROTECTED, CBOR_CONTEXT_PARAM_COMMA &errState), errState); pobj->m_ownUnprotectedMap = false; pobj->m_refCount = 1; return true; errorReturn: _COSE_Release(pobj); return false; }
cn_cbor * BuildKey(const cn_cbor * pKeyIn, bool fPublicKey) { cn_cbor * pKeyOut = cn_cbor_map_create(CBOR_CONTEXT_PARAM_COMMA NULL); cn_cbor * pKty = cn_cbor_mapget_string(pKeyIn, "kty"); cn_cbor * p; cn_cbor * pKey; cn_cbor * pValue; int i; int kty; unsigned char * pb; size_t cb; if (pKeyOut == NULL) return NULL; if ((pKty == NULL) || (pKty->type != CN_CBOR_TEXT)) return NULL; if (pKty->length == 2) { if (strncmp(pKty->v.str, "EC", 2) == 0) kty = 2; else return NULL; } else if (pKty->length == 3) { if (strncmp(pKty->v.str, "oct", 3) == 0) kty = 4; else return NULL; } else return NULL; p = cn_cbor_int_create(kty, CBOR_CONTEXT_PARAM_COMMA NULL); if (p == NULL) return NULL; if (!cn_cbor_mapput_int(pKeyOut, 1, p, CBOR_CONTEXT_PARAM_COMMA NULL)) return NULL; for (pKey = pKeyIn->first_child; pKey != NULL; pKey = pKey->next->next) { pValue = pKey->next; if (pKey->type == CN_CBOR_TEXT) { for (i = 0; i < 7; i++) { if ((pKey->length == strlen(RgStringKeys[i].szKey)) && (strncmp(pKey->v.str, RgStringKeys[i].szKey, strlen(RgStringKeys[i].szKey)) == 0) && ((RgStringKeys[i].kty == 0) || (RgStringKeys[i].kty == kty))) { switch (RgStringKeys[i].operation) { case OPERATION_NONE: p = cn_cbor_clone(pValue, CBOR_CONTEXT_PARAM_COMMA NULL); if (p == NULL) return NULL; if (!cn_cbor_mapput_int(pKeyOut, RgStringKeys[i].keyNew, p, CBOR_CONTEXT_PARAM_COMMA NULL)) return NULL; break; case OPERATION_BASE64: if ((strcmp(pKey->v.str, "d") == 0) && fPublicKey) continue; pb = base64_decode(pValue->v.str, pValue->length, &cb); p = cn_cbor_data_create(pb, (int)cb, CBOR_CONTEXT_PARAM_COMMA NULL); if (p == NULL) return NULL; if (!cn_cbor_mapput_int(pKeyOut, RgStringKeys[i].keyNew, p, CBOR_CONTEXT_PARAM_COMMA NULL)) return NULL; break; case OPERATION_STRING: p = cn_cbor_int_create(MapName(pValue, RgCurveNames, _countof(RgCurveNames)), CBOR_CONTEXT_PARAM_COMMA NULL); if (p == NULL) return NULL; if (!cn_cbor_mapput_int(pKeyOut, RgStringKeys[i].keyNew, p, CBOR_CONTEXT_PARAM_COMMA NULL)) return NULL; break; } i = 99; } } } } return pKeyOut; }
bool SetAttributes(HCOSE hHandle, const cn_cbor * pAttributes, int which, int msgType, bool fPublicKey) { const cn_cbor * pKey; const cn_cbor * pValue; int keyNew; cn_cbor * pValueNew; bool f = false; if (pAttributes == NULL) return true; if (pAttributes->type != CN_CBOR_MAP) return false; for (pKey = pAttributes->first_child; pKey != NULL; pKey = pKey->next->next) { pValue = pKey->next; if (pKey->type != CN_CBOR_TEXT) return false; if (strcmp(pKey->v.str, "alg") == 0) { keyNew = COSE_Header_Algorithm; pValueNew = cn_cbor_int_create(MapAlgorithmName(pValue), CBOR_CONTEXT_PARAM_COMMA NULL); } else if (strcmp(pKey->v.str, "ctyp") == 0) { keyNew = COSE_Header_Content_Type; pValueNew = cn_cbor_clone(pValue, CBOR_CONTEXT_PARAM_COMMA NULL); if (pValueNew == NULL) return false; } else if (strcmp(pKey->v.str, "IV_hex") == 0) { keyNew = COSE_Header_IV; pValueNew = cn_cbor_data_create(FromHex(pValue->v.str, (int) pValue->length), (int) pValue->length / 2, CBOR_CONTEXT_PARAM_COMMA NULL); } else if (strcmp(pKey->v.str, "apu_id") == 0) { keyNew = COSE_Header_KDF_U_name; pValueNew = cn_cbor_data_create(pValue->v.bytes, (int)pValue->length, CBOR_CONTEXT_PARAM_COMMA NULL); if (pValueNew == NULL) return false; } else if (strcmp(pKey->v.str, "apv_id") == 0) { keyNew = COSE_Header_KDF_V_name; pValueNew = cn_cbor_data_create(pValue->v.bytes, (int)pValue->length, CBOR_CONTEXT_PARAM_COMMA NULL); if (pValueNew == NULL) return false; } else if (strcmp(pKey->v.str, "pub_other") == 0) { keyNew = COSE_Header_KDF_PUB_other; pValueNew = cn_cbor_data_create(pValue->v.bytes, (int)pValue->length, CBOR_CONTEXT_PARAM_COMMA NULL); if (pValueNew == NULL) return false; } else if (strcmp(pKey->v.str, "priv_other") == 0) { keyNew = COSE_Header_KDF_PRIV; pValueNew = cn_cbor_data_create(pValue->v.bytes, (int)pValue->length, CBOR_CONTEXT_PARAM_COMMA NULL); if (pValueNew == NULL) return false; } else if (strcmp(pKey->v.str, "spk") == 0) { keyNew = COSE_Header_ECDH_STATIC; pValueNew = BuildKey(pValue, fPublicKey); if (pValueNew == NULL) return false; } else { continue; } switch (msgType) { #if INCLUDE_MAC case Attributes_MAC_protected: f = COSE_Mac_map_put_int((HCOSE_MAC)hHandle, keyNew, pValueNew, which, NULL); break; #endif #if INCLUDE_MAC0 case Attributes_MAC0_protected: f = COSE_Mac0_map_put_int((HCOSE_MAC0)hHandle, keyNew, pValueNew, which, NULL); break; #endif #if INCLUDE_ENCRYPT || INCLUDE_MAC case Attributes_Recipient_protected: f = COSE_Recipient_map_put_int((HCOSE_RECIPIENT)hHandle, keyNew, pValueNew, which, NULL); break; #endif #if INCLUDE_ENCRYPT case Attributes_Enveloped_protected: f = COSE_Enveloped_map_put_int((HCOSE_ENVELOPED)hHandle, keyNew, pValueNew, which, NULL); break; #endif #if INCLUDE_ENCRYPT0 case Attributes_Encrypt_protected: f = COSE_Encrypt_map_put_int((HCOSE_ENCRYPT)hHandle, keyNew, pValueNew, which, NULL); break; #endif #if INCLUDE_SIGN case Attributes_Sign_protected: f = COSE_Sign_map_put_int((HCOSE_SIGN)hHandle, keyNew, pValueNew, which, NULL); break; #endif #if INCLUDE_SIGN case Attributes_Signer_protected: f = COSE_Signer_map_put_int((HCOSE_SIGNER)hHandle, keyNew, pValueNew, which, NULL); break; #endif #if INCLUDE_SIGN0 case Attributes_Sign0_protected: f = COSE_Sign0_map_put_int((HCOSE_SIGN0)hHandle, keyNew, pValueNew, which, NULL); break; #endif } // assert(f); } return true; }
HCOSE_RECIPIENT COSE_Mac_add_shared_secret(HCOSE_MAC hcose, COSE_Algorithms alg, byte * rgbKey, int cbKey, byte * rgbKid, int cbKid, cose_errback * perr) { #ifdef USE_CBOR_CONTEXT cn_cbor_context * context = NULL; #endif // USE_CBOR_CONTEXT COSE_RecipientInfo * pobj; COSE_MacMessage * pcose = (COSE_MacMessage *)hcose; cn_cbor * cn_Temp = NULL; cn_cbor * pRecipients = NULL; cn_cbor * pRecipientsNew = NULL; byte * pbKey = NULL; byte * pbTemp = NULL; cn_cbor * cnTemp = NULL; cn_cbor_errback cbor_error; CHECK_CONDITION(IsValidMacHandle(hcose) && (rgbKey != NULL), COSE_ERR_INVALID_PARAMETER); #ifdef USE_CBOR_CONTEXT context = &pcose->m_message.m_allocContext; #endif // USE_CBOR_CONTEXT switch (alg) { case COSE_Algorithm_Direct: break; default: FAIL_CONDITION(COSE_ERR_INVALID_PARAMETER); } pobj = (COSE_RecipientInfo *)COSE_CALLOC(1, sizeof(COSE_RecipientInfo), context); CHECK_CONDITION(pobj != NULL, COSE_ERR_OUT_OF_MEMORY); if (!_COSE_Init(&pobj->m_encrypt.m_message, COSE_unknown_object, CBOR_CONTEXT_PARAM_COMMA perr)) { goto errorReturn; } cn_Temp = cn_cbor_int_create(alg, CBOR_CONTEXT_PARAM_COMMA &cbor_error); CHECK_CONDITION_CBOR(cn_Temp != NULL, cbor_error); CHECK_CONDITION_CBOR(cn_cbor_mapput_int(pobj->m_encrypt.m_message.m_unprotectMap, COSE_Header_Algorithm, cn_Temp, CBOR_CONTEXT_PARAM_COMMA &cbor_error), cbor_error); cn_Temp = NULL; if (cbKid > 0) { pbTemp = (byte *)COSE_CALLOC(cbKid, 1, context); CHECK_CONDITION(pbTemp != NULL, COSE_ERR_OUT_OF_MEMORY); memcpy(pbTemp, rgbKid, cbKid); cnTemp = cn_cbor_data_create(pbTemp, cbKid, CBOR_CONTEXT_PARAM_COMMA &cbor_error); CHECK_CONDITION_CBOR(cnTemp != NULL, cbor_error); pbTemp = NULL; CHECK_CONDITION_CBOR(cn_cbor_mapput_int(pobj->m_encrypt.m_message.m_unprotectMap, COSE_Header_KID, cnTemp, CBOR_CONTEXT_PARAM_COMMA &cbor_error), cbor_error); } pobj->m_encrypt.pbKey = pbKey = (byte *)COSE_CALLOC(cbKey, 1, context); CHECK_CONDITION(pobj->m_encrypt.pbKey != NULL, COSE_ERR_OUT_OF_MEMORY); memcpy(pbKey, rgbKey, cbKey); pobj->m_encrypt.cbKey = cbKey; pobj->m_recipientNext = pcose->m_recipientFirst; pcose->m_recipientFirst = pobj; pRecipients = _COSE_arrayget_int(&pcose->m_message, INDEX_MAC_RECIPIENTS); if (pRecipients == NULL) { pRecipients = pRecipientsNew = cn_cbor_array_create(CBOR_CONTEXT_PARAM_COMMA &cbor_error); CHECK_CONDITION_CBOR(pRecipients != NULL, cbor_error); pRecipientsNew = NULL; CHECK_CONDITION_CBOR(_COSE_array_replace(&pcose->m_message, pRecipients, INDEX_MAC_RECIPIENTS, CBOR_CONTEXT_PARAM_COMMA &cbor_error), cbor_error); } CHECK_CONDITION_CBOR(cn_cbor_array_append(pRecipients, pobj->m_encrypt.m_message.m_cbor, &cbor_error), cbor_error); pobj->m_encrypt.m_message.m_flags |= 1; return (HCOSE_RECIPIENT)pobj; errorReturn: if (cn_Temp != NULL) CN_CBOR_FREE(cn_Temp, context); if (pRecipientsNew != NULL) CN_CBOR_FREE(pRecipientsNew, context); // if (pobj != NULL) COSE_Recipient_Free(pobj); return NULL; }