Questions tagged [integrity]

The aspect of an object which describes it as unaltered since a reference time at which a description of its state was recorded, or a description of the continued functioning of a property of the object. An example of this is checking whether the MD5 hash of this file is the same as the MD5 hash that was calculated yesterday, to ensure the file was unaltered.

300 questions
0
votes
1 answer

How to protect a signing key?

I have a need to verify the integrity of a settings file. The file is an xml document. I understand you can use readily-available functions as discussed in this stackoverflow post. I am having trouble understanding how to protect the signing key…
David W
  • 487
  • 2
  • 5
  • 12
0
votes
1 answer

Django IntegrityError SQL: 1048, cannot be null

When submitting a form, I receive an IntegrityError (1048, "Column 'paid_on' cannot be null"). After some research I had discovered that many people had solved similar issues by including null=True, blank=True in an item's def in models.py, but…
Nick B
  • 9,267
  • 17
  • 64
  • 105
0
votes
1 answer

django integrityerror appending _id to the end of my attribute name

i have read a few of the examples regarding integrirty errors caused by appending _id to the end of an attribute but most of them regard user_id which is not the error i have - mine is dealing with a setting the initial value of a foreign key to…
snackerfish
  • 109
  • 4
  • 14
-1
votes
0 answers

can anyone help me with to list installed packages in linux machine and run integration checks and reinstall the packages which integrity check fails?

can anyone help me with to list installed packages in linux machine and run integration checks and reinstall the packages which integrity check fails? I need a ansible playbook to solve this? I am getting errors as packages are not installed so much…
Raj
  • 1
-1
votes
0 answers

Right Database Design

We have Purchase order management data as mentioned below. The order comes from different sources Retail, Wholesale, and online. Assume the addition of source is infrequent. Assume we don't have information on source ids as it is coming from a…
-1
votes
2 answers

How to install libraries in python without pip to make sure the integrity of their code?

I am working in a company that do not permit installing libraries without cybersecurity department permission. So I had to download the libraries for example from pypi.org, send them for authorization and install them by calling setup. However, I…
yav dat
  • 98
  • 1
  • 10
-1
votes
2 answers

Integrity eror not null constraint failed

Exception Type: IntegrityError Exception Value: NOT NULL constraint failed: Cart.cart_id #mymodel: class Cart(models.Model): cart_id=models.CharField(max_length=250,blank=True) def _cart_id(request): …
-1
votes
1 answer

Composite primary key better than unique index exclusion in PostgreSQL?

I am in the process of designing a database. I am taking my time to try to understand the key difference between using a unique index (using GIST EXCLUDE to enforce a specific business rule) and achieving the same result using a composite primary…
Ayed
  • 373
  • 5
  • 17
-1
votes
1 answer

Foreign key is incorectly formed in Laravel

I have the following two migration files: Schema::create('words', function (Blueprint $table) { $table->increments('id'); $table->integer('user_id')->unsigned(); $table->foreign('user_id')->references('id')->on('users'); …
Cicharito
  • 131
  • 5
  • 17
-1
votes
2 answers

(error) unresolved symbols when build C++ application for ARM using Green Hills toolchain

I cross compile an application for target device using ARM arch using Green Hills toolchain (the device will run INTEGRITY OS) but it fail with some error like that __vec_new from ... __vec_delete from ... I don't understand what it means and how…
TuanPM
  • 685
  • 8
  • 29
-1
votes
1 answer

Checking integrity with MD5

We have an desktop application what has an automatic update module that downloads an update file and install it. the updating routine does an MD5 comparison for the update file before updating (comparing the local file md5 version with the server…
kambi
  • 3,291
  • 10
  • 37
  • 58
-1
votes
1 answer

Integrity Measurement Architecture on Android

I would like to learn more about the reasons why IMA (integrity measurement architecture )wasn't included with Android. Any papers or readings are highly appreciated.
-2
votes
1 answer

VBA EXCEL REPLACE in database or dont copy if already there

First View (FIRST SHEET FOR UPLOADING) Second View (DATABASE WHERE DATA IS PARSED AND MANUAL EDITION IS BLOCKED SUB I MADE FOR DATA VALIDATION AND PARSING INFO Hi fellow devs, This is my first time using VBA. Im stucked atm because i need to…
Jay Lopez
  • 71
  • 1
  • 9
-2
votes
1 answer

C++ POSIX OO Cross Platform Library for use across languages and compilers

This is my first question here, so I apologies for any mistakes and will try to be as specific as possible. We need to develop a C++ POSIX OO Cross Platform Library for use across languages and compilers. Since we need to be able to use this…
Igor
  • 1
  • 2
-4
votes
2 answers

Integrity RTOS \ Multi Compiler

In Windows I can see any variable I declared in a namespace from outside of that namespace, but when it comes to Multi compiler, it is so strict, if you declared some variable in let say namespace X, you must access that variable only in namespace…
Burak
  • 29
  • 7
1 2 3
19
20