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

How to handle $digest triggered by $http

I have been struggling a long way in a issue, wherein I need to update a parent obj from directive scope. I need to fetch some data using $http and fit this data against a property in original parent Obj. However, after doing this, the view gets…
Saurabh Tiwari
  • 4,632
  • 9
  • 42
  • 82
0
votes
0 answers

Java digest Web service Call using c#

I have a C# app that can consume Java Digest Web Services . I then supply a System.Net.NetworkCredential but still get an Unauthorized (401) error from the host. I am using the visual studio 2008 . Any Suggestions appreciated? MY Client Code: …
Arun
  • 1
  • 1
0
votes
0 answers

My scope apply isn't working correctly

I have tried to research this issue and have had no luck. My ng-repeat doesn't display dynamic content from the controller on the first try. I was told to use a .digest or apply to get angular to hit my page again but I am not quite clear how to…
riotgear
  • 451
  • 1
  • 5
  • 19
0
votes
1 answer

How to test an MD5 implementation?

I am considering using a JS MD5 implementation. But I noticed that there are only a few tests. Is there a good way of verifying that implementation is correct? I know I can try it with a few different values and see if it works, but that only means…
B Seven
  • 44,484
  • 66
  • 240
  • 385
0
votes
1 answer

Howto SHA0 in ruby (>=1.9.3)

How to get hex of string in SHA-0 in ruby >=1.9.3? I searched on GitHub and here, I looked at the module Digest, but couldn't find an answer.
Artem D
  • 3
  • 2
0
votes
1 answer

WCF - Forward Digest Authentication from Service A to B

I have two WCF services (A and B) with Digest Authentication, and service A call an operation from Service B. When I call Service A, the client provide the credentials and I can call my method without problems. The same credentials access the…
Marlon Vidal
  • 669
  • 4
  • 14
0
votes
1 answer

implications of a successful read from Cassandra

This is the context: reading by primary key (only one row should be returned) reading from a quorum among 3 replicas don't care whether quorum agrees on contents of the row just care whether every node in quorum has the row This is my…
manabear
  • 431
  • 3
  • 6
0
votes
1 answer

OpenSSL: can output size of EVP_DigestFinal_ex be greater than the digest size?

OpenSSL EVP_DigestFinal_ex has the following documentation: "EVP_DigestFinal_ex() retrieves the digest value from ctx and places it in md. If the s parameter is not NULL then the number of bytes of data written (i.e. the length of the digest) will…
SkypeMeSM
  • 3,197
  • 8
  • 43
  • 61
0
votes
1 answer

Angular controller not updating view without page refresh

I have a problem with my login routine using passport js, express and angular. While the login as such works smoothly I want to use the window object to store the current logged in user for authentication purposes. After username and password are…
karlkurzer
  • 115
  • 9
0
votes
1 answer

XML Digitial Security - Hmac_SHA1

I need to create a digest value for the below input 2015-07-28T13:35:54Z
Mohan
  • 3,893
  • 9
  • 33
  • 42
0
votes
0 answers

PHP sha256 password hashing returns different digest when running on linux

I have the following php class that generates a sha256 digest.
fnkbz
  • 1,189
  • 1
  • 12
  • 22
0
votes
1 answer

Use HTTP Digest Authentication with WSO2 ESB

Is there a way to create a proxy or API with WSO2-ESB which calls a service secured with HTTP Digest authentication ? I can't find anything on the documentation. Thank you for your help.
Salah
  • 501
  • 1
  • 5
  • 18
0
votes
1 answer

AngularJS 10 $digest() iterations reached. Trying to keep service, controller, and view in sync using a $watch works, but causes errors

Ok, so I know what the issue here is. I'm using a $watch, and because of the value I'm setting (by calling a function in my service), a new array is created every time, and the watch constantly finds a new value. My question though, is how to fix…
0
votes
1 answer

Ruby: How can I write a digest to a file in binary format

I need to store a Digest::SHA512 object to a file in binary format. That seemed trivial, but whatever I try just write it as an hexadecimal string. I was expecting the following code to work: bindigest=digest.update(chall) File.open('sha1.bin',…
sbos61
  • 554
  • 2
  • 9
0
votes
2 answers

ClassNotFoundException when running in CMD

I'm trying to use DigestUtils class from org.apache.commons.codec.digest and I imported it in java like this: import org.apache.commons.codec.digest.DigestUtils; When I run it in Eclipse, it works. But when I try to run it from Command Prompt (with…
XploD
  • 367
  • 3
  • 15