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

securing rest web service with digest authentication java

I'm developing a rest client, with apache httpclient 4.3.3, which supports HTTP Basic and Digest authentication. I need an example of rest webservice with digest authentication to test my client. Can anyone help me, even an online rest web service…
0
votes
1 answer

markers on angular google map cause infinite digest loop

I'm trying to create a google map with markers on it, in an angular js front end. I can create the map, and can add markers. But when I add the markers, my console fills up with infinite digest errors. I'm using the angular google maps project This…
S..
  • 5,511
  • 2
  • 36
  • 43
0
votes
2 answers

From struts 2.0.14 to 2.3.16.1. Class not found for RuleSet

for security reason I have to update the reference of struts2-tiles-plugin from 2.0.X to 2.3.16.1. I update my web.xml with: struts2
Bertotz
  • 38
  • 7
0
votes
1 answer

How to identify same data digested with salt element?

I need to store data hashes in the database, so that later I know that some data is already present in the database. This is done using the standard digest algorithm with salt, so that these hashes are secure in case of any brute-force attacks. Now…
bozo
  • 947
  • 1
  • 13
  • 33
0
votes
1 answer

Jersey Security Digest vs Basic Auth

Could anyone explain to me why basic auth is working and the digest isn't working or not showing up in the http headers on the server anyway. public String login(UserDTO user) { ClientConfig clientConfig = new DefaultClientConfig(); …
Axl
  • 138
  • 9
0
votes
1 answer

Can't connect to a TLS web service using C# and digest authentication, Firefox succeeds where IE8 fails

I'm trying to connect to a web service using C# and digest authentication, but every time I got the 401 - Not Authorized error. But when I try to reach the service over Firefox, everything's OK. When I use IE8, my password is not accepted and I got…
emrekyv
  • 1,256
  • 1
  • 18
  • 21
0
votes
1 answer

AngularJs : how to do a $watch on a function to evoid the error: $digest() iterations reached

I have a list with items. Each item of a list can be selected. If I select the item, it will be pushed in the cookies. In my home.html (here I have the list with the items that I can add to cookies)
user880386
  • 2,737
  • 7
  • 33
  • 41
0
votes
0 answers

Codeiginter Restful with authentication not working

I'm having a problem with regards to Codeigniter Restful authentication. Without the authentication, it works fine. But then when I set the authentication to either "basic" or "digest", response returned is NULL. I have two(2) codeigniter setup. One…
basagabi
  • 4,900
  • 6
  • 38
  • 84
0
votes
2 answers

HTTPS & Digest Authentication

How to implement HTTPS with Digest Authentication in C#.Net? as per msdn, credential class has no support for SSL.. so how can we implement authentication? my code works with basic authentication but gives error with digest..
Nikhil
  • 1
  • 1
  • 1
0
votes
0 answers

Digester Property value is not set in java

Am having two properties of a bean but one is getting parsed value from XML and another is not getting using Digester in java Please help to solve this issue. Output podate:08021988:odate:null XML File
08021988
sunleo
  • 10,589
  • 35
  • 116
  • 196
0
votes
1 answer

10 Digest iterations reached, aborting (scope function issue)

I have pieces of data that come back in a very strange form (A single string representing all the choices/labels of a radio button group). Example: "yes|Yes no|No" Because of this, I have to transform it into an array of pair objects. I do this…
Conqueror
  • 4,265
  • 7
  • 35
  • 41
0
votes
2 answers

Libcurl with digest authorization in C: send http requests periodically

I'm developing a system that tracks objects with a P(an)T(ilt)Z(oom) camera which can be controlled via HTTP requests. The C application I develop is supposed to receive position data of the tracked object and to send commands to the camera to…
0
votes
1 answer

Ways to append message digest (hash) to a file

I'm trying to append an md5 hash for a file to the file itself. I was considering putting some padding between the actual file and the start of the hash, or maybe having the first few bytes of the file indicate the length of the file. I will then…
user979616
  • 273
  • 1
  • 6
  • 15
0
votes
1 answer

Nodejs equivalent of Python HMAC signature?

I want to generate a signature in Node.js. Here is a python example: signature = hmac.new(SECRET, msg=message, digestmod=hashlib.sha256).hexdigest().upper() I have this: signature = crypto.createHmac('sha256',…
John Russell
  • 1,115
  • 1
  • 15
  • 30
0
votes
1 answer

Maven Cargo plugin deploying to tomcat using digest authentication

I'm having trouble using the maven cargo plugin to deploy to a hosted tomcat server. I understand the server expects digest authentication. I am able to deploy to my vanilla test server with no problems. curl -u username --digest…
karu
  • 9
  • 4