6 references to GetIntegerEncodedSize
System.Security.Cryptography.Cose (6)
System\Security\Cryptography\Cose\CoseHeaderLabel.cs (1)
52EncodedSize = CoseHelpers.GetIntegerEncodedSize(label);
System\Security\Cryptography\Cose\CoseHeaderMap.cs (2)
394encodedSize += CoseHelpers.GetIntegerEncodedSize(algHeaderValueToSlip.Value); 397encodedSize += CoseHelpers.GetIntegerEncodedSize(mapLength);
System\Security\Cryptography\Cose\CoseHelpers.cs (2)
20return GetIntegerEncodedSize(bstrLength) + bstrLength; 26return GetIntegerEncodedSize(strEncodedLength) + strEncodedLength;
System\Security\Cryptography\Cose\CoseMultiSignMessage.cs (1)
544encodedLength += CoseHelpers.GetIntegerEncodedSize(Signatures.Count);