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. Examples: The MD5 hash of this file is the same as the MD5 hash I calculated yesterday; ...

learn more… | top users | synonyms

0
votes
0answers
19 views

How to make sure signed jar file deployed on web server (jboss, glassfish, or tomcat) integrity?

In the mobile application, the signed jar (or apk, cod) stay in handset, and OS has some ability to keep them integrity. But in the web application deployed jboss, glassfish or tomcat etc., If it is ...
0
votes
1answer
37 views

How to check File integrity

i'm developing an app that needs to download, every some minutes, some files. Using php, i list all the files and from java i get this list and check for file if is present or not. Once downloaded ...
0
votes
1answer
29 views

iOS - Programmatically check if the app is authentic

How do i check if my iOS app is code-signed with my certificate? or any other way by which i can determine that the app is original? I've seen that its possible in case of Mac, here. Please share ...
0
votes
0answers
20 views

Can transformation procedure be executed in parallel in Clark Wilson model?

Can transformation procedure be executed in parallel in Clark Wilson model? Can you guys explain me or maybe give me some documentations about it? I'm having an hard time finding an answer on the net ...
0
votes
2answers
68 views

Checking tarfile integrity in Python

I'm working on converting my backup script from shell to Python. One of the features of my old script was to check the created tarfile for integrity by doing: gzip -t . This seems to be a bit tricky ...
0
votes
2answers
193 views

Java Mysql Integrity Constraint Violation Exception

My Swing applications throws few exceptions. I tried to catch Integrity Constraint Violation Exception and display message "Duplicate ID". But when that happened, without catching it here: ...
0
votes
1answer
97 views

Does Google cloud messaging provide / support authentication, integrity and non repudiation?

I want to make sure that what I receive from the server, actually came from the server and was not tampered in transit. I have an application that send commands from a server to mobile devices. For ...
0
votes
1answer
110 views

Android shared library integrity protection

Is there a way to somehow 'protect' a native shared library (.so) for the Android platform against binary changing? E.g. someone could overwrite a JMP instruction with a NOP after reverse engineering ...
0
votes
0answers
37 views

Does VPN encryption imply message integrity for FP file transfers?

Ok, I know that the SFTP protocol is vastly superior to regular FTP, since it does both encryption and block-level checksums. I know that with SFTP I can be pretty sure the transfer is confidential, ...
0
votes
0answers
32 views

HBase and Data Integrity

I have some questions for HBase DB: How to ensure data integrity? Are there methods ensure the integrity? Does HBase primary key? or alternatives Foreign key? Referential Integrity? How are the ACID ...
1
vote
1answer
95 views

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 ...
0
votes
0answers
112 views

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) ...
12
votes
5answers
284 views

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 ...
0
votes
1answer
55 views

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 ...
0
votes
0answers
23 views

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 ...
-1
votes
1answer
126 views

Application to ensure data integrity in mongoDB [closed]

I am looking for an application that shows an example of how to ensure data integrity in mongodb? Can someone help me
0
votes
1answer
727 views

(doctrine2 + symfony2) cascading remove : integrity constraint violation 1451

First, sorry for my poor english... I got four entities : User, Application, Bundle & Entity. Here are their relations (with cascading persist & remove, see code below) : User 1-n ...
0
votes
0answers
55 views

Do integrity checks by file comparison really work?

I use a program (Beyond Compare) which has a Folder Compare module, with a function for doing a binary comparison between the files inside two folders. I use it to check the integrity of my backups, ...
0
votes
1answer
33 views

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 ...
0
votes
2answers
91 views

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 ...
0
votes
1answer
92 views

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 = ...
4
votes
0answers
250 views

removing an explicit mandatory label using icacls [closed]

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 ...
0
votes
4answers
354 views

Foreign key constraint error when saving product

$product = Mage::getModel('catalog/product'); // Build the product $product->setStoreID($store_id);//Store Id $product ...
0
votes
2answers
94 views

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 ...
0
votes
1answer
44 views

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 ...
2
votes
1answer
443 views

Fix for Innodb Integrity constraint violation: 1452

What Innodb query can I use to correct the following problem? SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails ...
3
votes
1answer
120 views

Atomic operations between multiple devices

This question is of none significance
3
votes
3answers
77 views

Checking integrity of javascript, user code=server code

Is there a way to verify that the user changed the jQuery/JavaScript with Firebug during the use of client-side page?
0
votes
0answers
169 views

What DBMS does Amazon use when you check out.

We know that Amazon uses a NOSQL key-value data store for many things, such as shopping cart, wish list, best seller list, etc. But, say you have books, clothes and an ab-cruncher in your shopping ...
1
vote
2answers
366 views

How to implement MD5 check into Inno Setup installer to get 'like NSIS integrity check'?

How to implement MD5 check into Inno Setup, so that it could verify base installer files (exe + bins) on InitializeSetup - this is standard NSIS functionality, which is quite useful as it informs if ...
3
votes
5answers
305 views

Check encryption key correctness in JAVA

I'm using BouncyCastle to encrypt/decrypt some files using AES and PKCS5 padding in CBC mode : Cipher c = Cipher.getInstance("AES/CBC/PKCS5Padding", "BC"); Now two questions: How can I check ...
1
vote
3answers
203 views

How to ensure contiguity of a tally table?

In SQL For Smarties, Joe Celko provides an ANSI SQL definition of a Series table (elsewhere called Tally or Numbers). His definition ensures the values in the column are unique, positive and ...
0
votes
1answer
29 views

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 ...
0
votes
1answer
62 views

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. ...
0
votes
0answers
52 views

Domain integrity check

Is it better to check for allowed domain values on the frond end or let the database engine handle the domain integrity. For example If you have a data entry form for employee, is it better to check ...
-2
votes
1answer
166 views

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.
0
votes
1answer
123 views

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() ...
0
votes
1answer
89 views

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 ...
0
votes
1answer
205 views

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) ...
0
votes
0answers
272 views

Hibernate: WARN: SQL Error: 23503, SQLState: 23503

i have two entities, 1. @NotNull @ManyToOne(optional = false, cascade = CascadeType.ALL, targetEntity = Currency.class) @JoinColumn(referencedColumnName = "CURRENCY_CODE", insertable = true, ...
3
votes
2answers
258 views

How do I detect whether a table has had rows added or removed outside my application?

This is a specific scenario. What I need to achieve is this: If someone insert or delete one or more rows in a specified table outside my application's UI, then it should detect that the table was ...
0
votes
0answers
223 views

Symfony2 and Doctrine: upper and lower case table_names in mysql

I am using Symfony2 and Doctrine. I correctly create entities and those are apparently well created in the database. I am experiencing random problems to do with foreign key constraints. From time to ...
0
votes
0answers
11 views

Managing Phone-to-Server data integrity

Is there a best practice for managing data between a phone and remote server? For example, we have a form that gets filled out, and the information needs to be sent to the server and stored, but that ...
0
votes
1answer
577 views

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, ...
2
votes
1answer
119 views

*-property of Biba model

In Dieter Gollmann's Computer security book, under Biba model, *-property is explained as follows. If subject s can read (observe) object o, then s can have write access to some other object p ...
0
votes
2answers
389 views

Is CRC32 really so bad for file integrity check?

Of course that MD5 is better then CRC32, SHA1 is better then MD5 and so on... But also they are also much slower then CRC32. Right know, I am thinking about how to check consistency of being ...
0
votes
1answer
95 views

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 ...
0
votes
0answers
99 views

Generat MIC value for 128bit AES Decryption

I am working on a digital cinema project.I am no expert in encryption. When trying to decrypt encrypted content (On a secure device) , the API requires a MIC ( Message Integrity Check) value to be ...
4
votes
3answers
382 views

File structure to avoid data corruption

I´m currently developing an upgrade of our current media storage (To store video/audio/metadata) for a surveillance system and I´m redesigning the recording structure to a more robust solution. I ...
1
vote
2answers
497 views

Why chose 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 ...

1 2 3