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.
Questions tagged [integrity]
300 questions
31
votes
5 answers
Why choose SHA512 over SHA384?
SHA384 is a truncated version of SHA512. But why would anyone use it? And corollary: if SHA384 is just as good as SHA512, is there any rationale in using the 512 bit version?
I am planning to use one of the algorithms to verify file integrity, so I…

jst
- 596
- 1
- 4
- 8
28
votes
2 answers
Google PlayIntegrity API: a Nightmare
I need some help guys!! I am a self-taught, newbie in encryption, and after reading, testing, and error for more than two weeks on how to solve this, and finding very little crowd knowledge and almost no documentation from Google.
I am trying to…

pvalle
- 1,335
- 1
- 13
- 20
25
votes
3 answers
Does encryption guarantee integrity?
To build a secure system, can we assume that encryption guarantees integrity is true before starting a secure programming?
Both in symmetric and public-key
encryption, is my question
well-proofed ?
If no, what are the
vulnerabilities, can you give…

berkay
- 3,907
- 4
- 36
- 51
19
votes
7 answers
Wordpress script with integrity and crossorigin
I'm trying to use the wp_register_script and wp_enqueue_script FUNCTION on WordPress to enqueue a script, which has two attributes: "integrity" and "crossorigin".
Normally I use PHP and my code looks like:
wp_register_script('jquery', 'http' .…
user6818018
18
votes
5 answers
How to find the offending attribute with a sqlalchemy IntegrityError
I have a very simple SqlAlchemy model
class User(Base):
""" The SQLAlchemy declarative model class for a User object. """
__tablename__ = 'users'
id = Column(Integer, primary_key=True)
phone = Column(String, unique=True)
email =…

Peter Smit
- 27,696
- 33
- 111
- 170
17
votes
2 answers
Redis and Data Integrity
I have some questions for REDIS DB:
How to ensure data integrity?
Are there methods ensure the integrity?
Does Redis primary key? or alternatives
Foreign key?
Referential Integrity?
How are the ACID properties to be implemented?
Ever Thanks for a…

viv1d
- 339
- 4
- 5
- 12
15
votes
4 answers
Check Android Assets Integrity
In my folder assets/data, there are a lot of XML files containing static data for my app.
It's really easy for someone to retrieve an APK, modify a part of it and install on a device.
I would like to prevent users to alter my static data by checking…

Hartok
- 2,147
- 20
- 37
14
votes
2 answers
HTTPS and Data Integrity
I haven't done lot of research on HTTPS yet so I have a question about it.
Is data integrity preserved using HTTPS or only confidentiality? For example on file upload, does HTTPS guarantee that no one can change the data on upload, or it only…

Nebojsa Veron
- 1,545
- 3
- 19
- 36
14
votes
2 answers
On using Terracotta as a persistence solution
Would it be a good idea to use Terracotta as a persistence solution (replacing a database)? I'm specifically wondering about data integrity issues and support for transactional systems.

Loki
- 29,950
- 9
- 48
- 62
13
votes
5 answers
Is there an elegant way to check file integrity with md5 in ansible using md5 files fetched from server?
I have several files on a server that I need to download from an ansible playbook, but because the connection has good chances of interruption I would like to check their integrity after download.
I'm considering two approaches:
Store the md5 of…

Vlad Manuel Mureșan
- 760
- 1
- 8
- 21
12
votes
3 answers
Message Integrity Check with HTTP headers since Content-MD5 was deprecated?
Making a REST web server mainly based on large files uploads / downloads, I want to be able to check the file integrity. I believed that the proper way to do it was using Content-MD5 HTTP header [0] as proved useful by aws experience [1].
However,…

user687718
- 121
- 1
- 4
10
votes
2 answers
Enable integrity checking with sqlite in django
In my django project, I use mysql db for production, and sqlite for tests.
Problem is, some of my code rely on model integrity checking. It works well with mysql, but integrity errors are not thrown when the same code is executed in tests.
I know…

Thibault J
- 4,336
- 33
- 44
10
votes
2 answers
Bootstrap failing to load from maxcdn ERR_CONNECTION_RESET
I'm using Bootstrap in my application from MAXCDN but sometimes it fails to load and gives me two reasons which I can't figure out why.
(failed) net::ERR_CONNECTION_RESET // min.css
(failed) net::ERR_SSL_VERSION_INTERFERENCE // min.js
I'm using…

Karl Taylor
- 4,839
- 3
- 34
- 62
9
votes
4 answers
about MD5 checksum for Http big file downloading
MD5 checksum is widely used for integrity checking for Http downloading big files. My question is, since TCP itself provides reliable mechanism (i.e. checksum for each TCP package to ensure its integrity). So, in short TCP is reliable. Http is based…

George2
- 44,761
- 110
- 317
- 455
9
votes
0 answers
removing an explicit mandatory label using icacls
I was doing some experimentation with integrity levels and icacls on Windows 7. I set mandatory integrity levels, so that I get something that looks like this:
C:\Debug>icacls test.exe
test.exe Everyone:(I)(RX)
…

chut7
- 103
- 1
- 4