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
0
votes
0 answers
Where does this IntegrityError comes from on the Django ORM on MySQL?
I have a Django 1.5 site running a MySQL DB on Cent OS, and one of the views that used to worked suddenly started to fail on this snippet :
ipdb> Video.objects.create(owner=usr, category=category, status="processing",…

Bite code
- 578,959
- 113
- 301
- 329
0
votes
1 answer
Trying to Understand File Integrity Monitering for Websites
I'm trying to understand how file integrity monitoring works, and I feel like I'm missing something. From what I've read, cryptographic hashes of the files to be monitored are stored in a database. Then, periodically, the hashes for those files are…

Dominic P
- 2,284
- 2
- 27
- 46
0
votes
1 answer
RiakCS Object Integrity?
I'm comparing different open source cloud storage technologies. I would like to know if Riak Cloud Storage (RiakCS) has any mechanism to preserve the integrity of the objects stored in it - like Openstack Swift's Integrity Audit, or Ceph's scrub. I…

Mohamed
- 342
- 3
- 14
0
votes
1 answer
Parsing binary data with integrity keys embedded - techniques?
I am trying to get a solid strategy together to parse binary data that has embedded integrity symbols. Here are the construction rules in EBNF form:
Log ::= {Data};
Data ::= Key,DataList;
DataList ::= {Structure};
The issue is that Key can appear…

Scott Pavetti
- 106
- 6
0
votes
0 answers
XML-File Integrity Check Standard
I have a need to incorporate some kind of integrity check of XML file into it's structure. Considering an XmlDSig as a standard, I wonder is there any way to get rid of asymmetric key (authentication) feature? Or maybe there is some other standard…

frtnum
- 177
- 14
0
votes
1 answer
Using RVM via Integrity continuous integration
I am currently using Integrity for continuous integration. The CI server is running with 'integrity' gemset, but the application (and it's Rspec test suite) it is supposed to start and test is designed to run with another gemset called, say,…

Stepan Salin
- 3
- 1
0
votes
0 answers
Integrity of http using browser
How is it possible to check the integrity of http messages in a way browser can do ?
Actually Digest authentication with "qop=auth-int" would work (because the md5 is also over the body) but unfortunately this is not supported by common webservers…

mr.wolle
- 1,148
- 2
- 13
- 21
0
votes
1 answer
Django issues with OneToOne relationship model saving
I have an issue with saving input from two forms, one of which is a User creation form and one of which is a UserProfile creation form. When I try to call creation_form.save() and then profile_form.save(), I get an IntegrityError, because the…

Andrew C
- 689
- 2
- 9
- 23
0
votes
3 answers
Heap / C++ Standard Library use Under Green Hills INTEGRITY
I'm running under Green Hills INTEGRITY 5.0.10 targeting a Marvell Monahans PXA 320. For development, I'm using MULTI 4.2.3 and my language of choice is C++.
I'm just learning about INTEGRITY memory management and am wondering about use of dynamic…

Dave
- 1,519
- 2
- 18
- 39
0
votes
1 answer
Django models Integrity error
class Subscribers(User):
date = models.DateField()
user = models.OneToOneField(User)
class Tour(models.Model):
""" This is not the id is a User object
"""
owner_id = models.ForeignKey(User)
name =…

user1855165
- 289
- 1
- 8
- 22
0
votes
2 answers
Use PHP or SQL for error check
Give the following table:
CREATE TABLE User (
Email VARCHAR(256) PRIMARY KEY,
Name VARCHAR(256),
);
I am trying to insert date into the table.
To check for duplication, should I use SQL to select email from user where email = $email and check the…

mikey
- 41
- 5
0
votes
2 answers
Verifying API response integrity
I am building a suite of mobile apps and an accompanying web service for them. In order to secure the connection (to a reasonable level) from the app to the web service I'm using a 2-legged OAuth approach, with each app using a unique consumer…

Mark
- 315
- 1
- 5
- 8
0
votes
1 answer
Hash functions and integrity
consider the following situation:
I have a string s and hash function H generating the hash "h".
I send both s and h to another.
he sends back s and h back to me.
On the s and h received , I perform h'=H(s) and compare it with the h received , if…

Tal
- 1,773
- 4
- 18
- 20
0
votes
1 answer
Does setting the integrity priority of the dll on the development machine persist on the install-build
I use IShellLink to get the target path of a shortcut. Most of the time it is good, but I am missing some of the files once in a while. I read somewhere that the Integrity Priority could be an issue. See Integrity Priority here -…

dysonfree
- 108
- 3
- 11
0
votes
1 answer
django integrity error, many to many relationship
That's my models.py:
class User(models.Model):
email = models.EmailField()
def __unicode__(self):
return str(self.email)
class Link(models.Model):
link = models.URLField()
users = models.ManyToManyField(User,…

andrew_vvv
- 75
- 1
- 1
- 5