Questions tagged [digest]

also known as a hash value. Used as a key to distinguish the resources (file, uri, etc.) generating the unique key for them - digest (hash).

Digest also known as a hash value or key in software development, computer and engineering fields.

Used as a key to distinguish the resources (file, uri, etc.) generating the unique key for them - digest (hash). Hashes can be generated from variable length content with variety of methods (sha1, md5, crc32 and others) and represent fixed length generated value.

Resources:

439 questions
0
votes
1 answer

Cakephp Digest Authentication Not working in chrome browser

Im running cakephp 2.6 and the xamp webserver and im trying to get Digest Auth to work with cakephp. When i use it keeps asking for the username and password over and over again. Im not sure whats wrong or how to fix this. I havnt found a tutorial…
fuzzy dunlop
  • 477
  • 2
  • 10
  • 22
0
votes
1 answer

How to not digest *.html template files in assets?

I have html templates files in assets folder for angular. In production sprockets digest these files. And I can't reference to them from angular directive. For example: templateUrl: @template('index.html') but real file name is…
Igor Babkin
  • 509
  • 2
  • 6
  • 14
0
votes
1 answer

Digest Authentication for ROBOTFRAMEWORK

below is the begining of a script for testing a rest interface on a device , this device has a https server with Digest Authentication. This is where i am encountering a problem below I have it set up I do not get an error so i assume Set Digest…
robm
  • 1,041
  • 1
  • 10
  • 14
0
votes
1 answer

AngularJS scope not updating

After executing get or put in indexeddb, the callback is updating the scope. The problem is, no update is being triggered in the ui! A common solution is to use apply or digest but that is wrong, you should NOT use those operations. Angular should…
Sharon Dorot
  • 542
  • 1
  • 4
  • 15
0
votes
2 answers

Wrong digest value using PHP

I've got string: $string = ''; and…
KMatko
  • 161
  • 1
  • 2
  • 10
0
votes
0 answers

Infinite digest loop when no scopes seem to be changing

I have an array, whose only value is current "1". It conferences a unique id in my MySQL database that I query through HTTP get to grab information on, I'm 100% sure my get request is not failing. Here's the HTML code:
q.Then
  • 2,743
  • 1
  • 21
  • 31
0
votes
1 answer

can we implement HTTP Digest Proxy over SSL on iPhone programmatically, is it possible?

I am trying to implement Http Digest Authentication over SSL for one of my clients. I could not find any reference related to this. Is this possible to implement? Thanks
Trident
  • 810
  • 9
  • 20
0
votes
1 answer

Angular complex expression vs function in your markup

Just wondering if there is a recommended solution for the following scenario. I have a complex expression in my markup to show some error message, e.g. ng-show="currentSection == 'pickup-from' && carHireEnquiryForm.pickUpLocation.$dirty &&…
Cuong
  • 127
  • 11
0
votes
2 answers

C - Message digest, same value returning every time (1 of 4 files should have a different value)

One of my files should be different than the others and this program is supposed to tell me which. I have a feeling that the "_setmode..." could be wrong (actually almost sure, it doesn't seem to have any effect - it's supposed to set input mode to…
Link2999
  • 5
  • 4
0
votes
1 answer

AngularJS digest cycle limit with directive template and trusted resource

It seems like the directive is replacing the template, then running the trust resource function, which updates the source, then it is updating the template again and getting stuck in a loop. But this is the recommended method?? The html:
Kim T
  • 5,770
  • 1
  • 52
  • 79
0
votes
2 answers

angularjs make random placeholder on input

I tried to make random placeholder text on input. here is my sample code try to Run this sample several times, then you may see error code through console. Error: 10 $digest() iterations reached. Aborting! Watchers fired in the last 5…
DK2
  • 651
  • 1
  • 7
  • 34
0
votes
1 answer

angular.js $scope.$apply wont work on ng-repeat

This used to work for me all the time using $scope.$apply on $http requests, what am i missing on this one? I first got the "Digest cycle is already in progress" msg, than added the setTimeout() which got rid of that msg but still ng-repeat wont…
Tomas Katz
  • 1,653
  • 1
  • 13
  • 27
0
votes
0 answers

Make angular reevaluate complete page

we recently switched to Angular 1.3.x and now noticed that it seems to perform much better dirty checking. However there is a case (changing the language for the complete site) where our old implementation expects a reevaluation of certain…
Daniel
  • 597
  • 11
  • 19
0
votes
1 answer

HTTP digest in javascript. md5 recalculation for new uri

I write client side javascript implementation of digest authorization and I ran into trouble. After a successful login I put authorization header parameters into cookie for the nest request. But if uri is changed md5 hash becomes invalid. I could…
user3414982
  • 357
  • 1
  • 4
  • 15
0
votes
1 answer

MessageDigest in Rust

I'm not really that strong in cryptography, so I'm striving to understand what this Java code exactly does: MessageDigest md = MessageDigest.getInstance("SHA-256"); md.update("some string".getBytes("UTF-8")); byte[] digest = md.digest(); and…
Incerteza
  • 32,326
  • 47
  • 154
  • 261