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).
1
vote
0answers
24 views
error installing ggplot2/digest in R
I receive the following error after trying to install ggplot2 which in turn tries to install digest. The session info is pasted below.
sha2.c(88): catastrophic error: #error directive: Define ...
0
votes
1answer
55 views
Secure user login using java hash and salt
I have been trying for some time now but can't find an answer.... I am new to this topic so apologize if its a basic question...
How do I store user password securely and let user login?
so first ...
0
votes
2answers
52 views
get back a string representation from computeDigest(algorithm, value) byte[]
The Google App Script function computeDigest returns a byte array of the signature. How can I get the string representation of the digest?
I have already tried the bin2String() function.
function ...
0
votes
2answers
114 views
AngularJS, JQuery and Onload Event
I am writing an application on Ruby on Rails using AngularJS for resource management (dynamic loading etc) and JQuery for effects like accordion, fade in-out etc.
When I want to display my data on a ...
2
votes
2answers
177 views
Jenkins Plugin Manager: Digest mismatch error
I just installed Jenkins 1.511 with JDK 1.6.0_38 on Ubuntu 12.04 (AMD64). When I refresh the list of plugins, the list remains empty. The log file shows an error:
Apr 19, 2013 9:23:54 AM ...
2
votes
1answer
73 views
Creating a digest with digest.bat exits with JRE_HOME not configured
I am attempting to create a digest for some passwords.
When running the following command
C:\Program Files\apache-tomcat-7.0.34\bin> digest.bat -a SHA-256 somepassword
i receive the following ...
0
votes
0answers
19 views
DigestAuthFixer Throwing Exception (Header nonce not found)
I'm working on a project where I do a Webrequest.
Because of a problem I had a ' 401.1 Authorization required' problem and I used a DigestAuthFixer (Found on the internet) which solved that problem.
...
0
votes
1answer
80 views
207 Multi-status response jQuery error with digest auth only works in incognito
On an nginx+php-fpm server I am running a carddav server and client based on SabreDAV and jQuery respectively. I can normally login but with one exception. After some time, and possibly due to a ...
0
votes
1answer
147 views
How to use perl digest module to calculate CRC?
I need to implemenmt CRC-32 (with custom poly) in Perl.
I have seen that there is a module called digest::crc that does it.
However, when I compare the result to an online calculator, I dont get the ...
0
votes
2answers
139 views
setting up a digest http request with a java library
So I am trying to connect to a database (The owners of the server outsource the set up work and don't know details about it) and have a username and password. When I try connecting with curl in the ...
0
votes
1answer
201 views
Angularjs scope variable after $http call isn't updated in the view
I have this in the service:
UpdateQuestionsSmsStatus: function (smsProfileId, active) {
//TODO: ajax get data
var promise = this.UpdateQuestionsSmsStatusInternal(smsProfileId, ...
0
votes
0answers
142 views
unable sending POST parameters over Digest Authentication using C#
I am trying to send an JavaScript object to a server, i am trying to do it within an c# application, my problem that i can't authenticate when i am trying to send the object, but the same code used ...
1
vote
1answer
33 views
rails_digest caching per user
I my app, my views are generated according to users actions and rights.
I would like to implement rails_digest to cache my pages but I need to do this per user.
I know it's possible in fragment ...
0
votes
2answers
76 views
R base64 decode - nul in string
I'm trying to create function that will run private API callss on some sites.
All those sites are using authentication by signature of the API call as follows in php:
base64_encode( ...
0
votes
0answers
52 views
Digest Auth Sceme in Perl
For proxy authentication to get a webpage,
I currently use basic proxy auth as below
my $request = new HTTP::Request('GET', $url);
$request->proxy_authorization_basic( $USERNAME, $PASSWORD );
...
1
vote
0answers
306 views
vb.net HTTPWebRequest Header
I am using VB.net and I am trying to load a file using HTTPWebRequest.
I have found that if I am requesting a file that requires a username and password I need to set that in the header of the ...
0
votes
1answer
142 views
Angular's template with external js libraries
I have made element directive, which works with template through templateUrl parameter. This template contains fileupload input, which needs about 8 external js libraries (jquery fileupload plugin). ...
0
votes
1answer
56 views
rails sprockets get asset's digest
what is the easiest way to get an asset's digest in ralis?
for example here is the javascript file
javascript_path "jquery.js"
and I wonder what is the digest for this jquery.js
0
votes
1answer
58 views
What is digested data?
I'm learning OpenSSL and I found this method BIO_f_md() in the libtrary documentation: http://www.openssl.org/docs/crypto/BIO_f_md.html where it says:
Any data written or read through a digest BIO ...
0
votes
0answers
212 views
Signing data with private key in ruby's OpenSSL
I have native openssl utilitiy command
openssl dgst -sign mtscert.pem -out KK_0.txt -md5 svertka.txt
And i need to 'convert' it to ruby's OpenSSL. When i do it this way
keypair = ...
2
votes
1answer
138 views
PHP curl login too long
I have a web-service that I can use with my browser but cannot call with CURL in a PHP script.
Here the code I use with an example of the login/password sent.
curl_setopt($ch, ...
0
votes
1answer
56 views
getting BadDigest error while trying to upload compressed file to s3 on ruby 1.9.3
as stated, i am trying to upload a file to s3
require 'digest/md5'
require 'base64'
require 'aws-sdk'
def digest f
f.rewind
Digest::MD5.new.tab do |dig|
f.each_chunk{|ch| dig << ch}
...
0
votes
0answers
104 views
Can Digest authentication protect user's password during creation of password?
Our web api (HTTP) have 2 requirements:
Let consumers be able to securely create a user and choose their username and password. (And also change their password later on.)
Securely authenticate ...
2
votes
1answer
527 views
How can I get a deferred object set in one scope to be included in the digest of another scope in AngularJS?
Folks, I have a problem. I'm using AngularJS and I am setting up a deferred object inside an Angular service definition:
angular.module('myServices', []).
service('Brand', function($rootScope, $q){
...
1
vote
1answer
455 views
Authorization Header in HTTP Request
So I am trying to replicate this http request:
GET /Login.asmx/Login%20 HTTP/1.1
Authorization: Digest username="****", realm="****", nonce="****", uri="****", cnonce="****", nc=00000001, ...
2
votes
3answers
528 views
Lightweight 8 byte hash function algorithm
I need to extract an 8 byte digest from a variable length string so I'm looking for such an algorithm that I will implement in c/c++. That will be part of a digital signature procedure on a ...
2
votes
1answer
700 views
Bottle.py HTTP Auth?
How can I get my bottle.py app (Running in Paste or Cherrypy) to do HTTP (basic or digest) authentication? - I need to secure it, but cant find a any HOWTOs.
0
votes
1answer
531 views
Error: 10 $digest() iterations reached. Aborting! with httpInterceptor (iFrame) IE
I'm using AngularJS and I have a little question here. I just made my httpInterceptor service to display a spinner on a webpage when performing ajaxRequests but it is getting me this error when I run ...
7
votes
2answers
259 views
How to do xml signing in ruby
I need to sign xml using ruby, someone know any method or lib for that?
My xml skeleton is:
<?xml version="1.0" encoding="ISO-8859-1"?>
<Message>
<MessageId>
...
1
vote
3answers
101 views
How to create a consistent hashstring of a ruby array?
I wonder how it is possible to create a consistent hash of a ruby array full of strings. The requirements are that the hash is always the same if the array contains the same values, independent of ...
0
votes
1answer
613 views
Using Digest Auth and Sending POST data with curl
I have a question regarding HTTP Digest Auth using curl, and sending post data at the same time.
I have a REST API, and each resource in it needs authentication. I access my resources from my website ...
0
votes
4answers
85 views
rnddata digest issue
I tried to generate a big file for digest.
When I used below openssl rand 8096 | head -c 8096 > rnddata, it was ok.
./hash_test sha1
Digest is: a0a4dab4a16d247fb625ca2abf07373d2123e4a5
openssl dgst ...
1
vote
0answers
110 views
Do any web browsers support HTTP Digest with alternative digest algorithms such as SHA-2
I am looking to see do any web browsers currently support HTTP Digest using alternative digest algorithms such as SHA-2?
I know the proposed update to RFC-2617 is still in a draft state so just ...
0
votes
1answer
153 views
Authentication codeigniter-restserver
I am having trouble with authentication in codeigniter-restserver.
When I set the config: $config['rest_auth'] to either basic or digest, I can't seem to get through the validation, using the ...
2
votes
0answers
308 views
Glassfish JDBC Realm with Digest Authentication
I'm working on a Java REST project and I'm currently using a JDBC Realm with Basic authentication. I'm storing SHA-256 hashes of passwords and Basic authentication works fine. To switch to Digest ...
5
votes
3answers
2k views
AngularJS: Fire an event immediately after $scope.$digest
In my AngularJS app, there's several points at which I want to wait for a $scope to be processed into the DOM, and then run some code on it, like a jquery fadeIn, for example.
Is there a way to ...
0
votes
0answers
199 views
Questions on Cookies cURL and Digest Auth PHP
I have 2 pages: login.php and index.php
When writting localhost/mysite/login.php and writting a username and password in a form, a cURL request using CURLOPT_HTTPAUTH = CURLAUTH_DIGEST and ...
0
votes
1answer
537 views
cURL and Digest Auth
I'm making a DIGEST AUTH using cURL and it's working perfect. The problem is, I need the browser to keep those Digest Credentials made on the login page, in all other pages without having to resend ...
0
votes
1answer
187 views
How to manually authenticate with Digest Auth?
I have a restful api I want to access, and my app has its own login form. I want to use those credentials every time I try to access my rest resources. The problem is, since I´m using HTTP Digest, ...
0
votes
1answer
76 views
SHA-1 Digest Reduction
I'm using QR Code barcodes to store UUIDs in my system and I need to check that the barcodes generated are mine and not someone else's. I also need to keep the encoded data short so that the QR Codes ...
0
votes
1answer
79 views
PHP Digest/Basic Auth default windows look
I have an application that uses REST API and I'm implementing Digest Authentication for the security scheme. The problem is, when I log into the application, I don't want the default user/pass windows ...
0
votes
0answers
654 views
HttpWebRequest with Digest authentication returns error 401 in metro app (windows 8)
I'm developing an app for Windows 8 (metro app) that needs to download some content from a server that requires Digest authentication.
This is the code I'm using to send the request:
WebRequest ...
1
vote
0answers
107 views
PDF HTTP GET request with digest and Safari
I'm facing some problems with authentication. I'm developing an application for Samsung SmartTV (is based on Safari) and I want to use iframe tag to open a PDF file. To view the PDF, you need to be ...
0
votes
0answers
94 views
Silverlight 4.0 and Digest authentication
We have silverlight + wcf web client, which needs to connect to server on hardware device which supports digest authentication. Problem is when I try to connect to the device webserver from browser, ...
4
votes
1answer
1k views
Javascript digest manually authentication
i read all the posts about digest authentication and i'm trying but i have any problem, i have a restlet with the digest authentication implemented, and with a javascript api i'm trying to ...
1
vote
2answers
430 views
Digest authentication in django
As far as my knowledge says in digest authentication, a client does an irreversible computation, using the password and a random value supplied by the server as input values. The result is transmitted ...
2
votes
1answer
2k views
NSURLConnection sendAsynchronousRequest:queue:completionHandler: doesn't call delegate method - didReceiveAuthenticationChallenge
I have a REST API which is secured by digest. I want to download my JSON response, but first I've to authenticate against the rest api.
I'm doing my Requests with ...
1
vote
2answers
491 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 ...
4
votes
1answer
1k views
Rails compiles assets both with and without md5 hash, why?
I'm relatively new to RoR and I'm curious about why Rails compiles assets both with and without md5 hash for production?
I run bundle exec rake assets:clean then bundle exec rake assets:precompile
...
2
votes
1answer
1k views
Converting a hexadecimal digest to base64 in Ruby
I have a string representation of a MD5 hex digest for a file, that I want to convert to base64 in order to use the Content-MD5 HTTP header when uploading it. Is there a clearer or more efficient ...