Questions tagged [verification]

Verification checks whether a product complies with specifications and further fixed conditions.

Verification is a quality control process that evaluates whether the product under development complies with regulations, specifications, or conditions imposed at the start of a development phase, see http://en.wikipedia.org/wiki/Verification_and_Validation.

Verification spans from manual testing to formal methods, from early development to final product evaluation.

Although there is often not a clear divide, you should try to differentiate the following two notions:

  • Validation: "Are we trying to make the right thing?", i.e., is the product specified to the user's actual needs?
  • Verification: "Have we made what we were trying to make?", i.e., does the product conform to the specifications?

Also see:

1429 questions
7
votes
3 answers

Unable to deactivate Email Verification Laravel

I originally thought it was a good idea to activate the email verification feature in Laravel but have decided not to use it in the end. However, for some reason, I now get an error message when I remove ['verify' => true] …
The Ginger Fox
  • 367
  • 1
  • 4
  • 15
7
votes
2 answers

"unknown ca" with self-generated CA, certificates and client/server

I'm writing a custom client & server that I want to communicate securely over the public Internet, therefore I want to use OpenSSL and have both ends do peer verification to ensure that my client isn't mis-directed by a MITM, and likewise that an…
dgnuff
  • 3,195
  • 2
  • 18
  • 32
7
votes
1 answer

How to emulate 500-50000 worker (docker) nodes network?

So I have a worker docker images. I want to spin up a network of 500-50000 nodes to emulate what happens to a private blockchain such as etherium on different scales. What would be a recomendation for an opensource tool/library for such job: a) one…
DuckQueen
  • 772
  • 10
  • 62
  • 134
7
votes
2 answers

How to fix "Class signed does not exist" error in Laravel 5.7?

I just updated my Laravel project from 5.6 to 5.7. The primary reason I upgraded was I needed to add Email Verification to my project. After I completed all upgrade steps and implemented the Email Verification as per the Laravel documentation I am…
Wayne Fulcher
  • 741
  • 1
  • 11
  • 21
7
votes
6 answers

Same page processing

How can process a form on the same page vs using a separate process page. Right now for signups, comment submissions, etc I use a second page that verifies data and then submits and routes back to home.php. How can I make it so that on submit, the…
AAA
  • 3,120
  • 11
  • 53
  • 71
7
votes
1 answer

PreferenceActivity validating user input and showing error messages

I am using a PreferenceActivity for user to define certain settings for the application. I am also using the OnPreferenceChangeListener interface to get notifications of changed preferences, and within that callback, I can do validation of the…
Cinar
  • 183
  • 1
  • 1
  • 11
7
votes
6 answers

Change username Github "You must verify your email address" 403 error on git push

I recently changed my username on github (so that everything redirects to a new URL on my username) I got this error through a cmd line git push You must verify your email address Fatal: The request URL returned error: 403 However, github…
Vincent Tang
  • 3,758
  • 6
  • 45
  • 63
7
votes
2 answers

symbolic execution and model-checking

What is the difference between symbolic execution and model checking (for example in model transformation)? I don't understand difference of them. Are they the same?!
7
votes
3 answers

Clarifications on Bytecode and objects

I am writing a Bytecode instrumenter. Right now, I am trying to find out how to do that in the presence of objects. I would like some clarifications on two lines I read in the JVMS (section 4.9.4): 1) "The verifier rejects code that uses the new…
H-H
  • 4,431
  • 6
  • 33
  • 41
7
votes
2 answers

Bytecode and Objects

I am working on a bytecode instrumentation project. Currently when handling objects, the verifier throws an error most of the time. So I would like to get things clear concerning rules with objects (I read the JVMS but couldn't find the answer I was…
H-H
  • 4,431
  • 6
  • 33
  • 41
7
votes
2 answers

Unable to verify digital signature using Apache PDFBOX

I am a newbie in using Digital Signatures. In one of the projects we are using Apache PdfBox for processing digitally signed pdf files. While we could test all features, verification of signed pdf files is something we are unable to crack. We are…
Ranjan
  • 858
  • 2
  • 10
  • 17
7
votes
1 answer

curl_setopt cacert.pem for paypal

I'm trying to set up a callback handler for IPN (paypal) verification. I know what curl does, but I don't know what 'cacert.pem' is (certificate...?). this is where the callback.php file fails (exists): curl_setopt($ch, CURLOPT_CAINFO,…
Zbarcea Christian
  • 9,367
  • 22
  • 84
  • 137
7
votes
5 answers

Creditcard verification with regex?

What is the right way to verify a credit card with a regex? If which one to use there are tons online. If not how to verify?
level20dm
  • 176
  • 1
  • 1
  • 5
7
votes
3 answers

Verifying that a protected super method is invoked

I have the following structure: class Bar{ .... protected void restore(){ .... } .... } This class is extended by Foo as below: class Foo extends Bar{ .... @Override public void restore(){ //valid override …
arin
  • 1,774
  • 22
  • 35
7
votes
3 answers

Verify Twitter login from iPhone on the server side

Ok, so I've currently implemented Facebook login in my app the following way: I use the official FB framework to login the user. When I login, I get a authentication token, which is sent to my server. I then do another verification of the user (e.g.…
Arvid Janson
  • 1,034
  • 10
  • 10