Entropy is a measure of the uncertainty in a random variable.
0
votes
1answer
60 views
Understanding shannon entropy of a data set
I'm reading Machine Learning In Action and am going through the decision tree chapter. I understand that decision trees are built such that splitting the data set gives you a way to structure your ...
1
vote
1answer
24 views
Calculate variance of frequencies when dataset does not contain entries of frequency zero
I have a dataset that has three fields: id, feature and frequency. What I want to do is find out, for a group of given id's, which feature has the largest spread of frequencies. The result I want is ...
1
vote
1answer
38 views
entropy estimation using histogram of normal data vs direct formula (matlab)
Let's assume we have drawn n=10000 samples of the standard normal distribution.
Now I want to calculate its entropy using histograms to calculate the probabilities.
1) calculate probabilities (for ...
-1
votes
0answers
29 views
Converting Numeric variables into Bins to calculate Entrophy/Chisquare using CUT function [closed]
Following is the code i use - to convert Numeric variables into Bins and then calculating Entropy/Chisquare using CUT function
Code:
for(i in 3:ncol(Data2))
{
if(is.numeric(Data2[,i]))
...
1
vote
3answers
67 views
Looking for an one-way function with small input and long output
I'm looking for an algorithm, which is a one-way function, like Hash function. And the algorithm accept a small input(serveral bits, less than 512 bits), and map it to a long output(1K Byte or more). ...
2
votes
1answer
232 views
Fastest way to compute entropy in Python
In my project I need to compute the entropy of 0-1 vectors many times. Here's my code:
def entropy(labels):
""" Computes entropy of 0-1 vector. """
n_labels = len(labels)
if n_labels ...
1
vote
1answer
45 views
ASLR affected by entropy available on Linux?
It is mentioned in the kernel source in random.c that get_random_int is “Similar to urandom but with the goal of minimal entropy pool depletion”. However, where (and how) does get_random_int interact ...
0
votes
1answer
48 views
Best Python way to harvest user entropy from keystrokes a la PGP?
Does anyone recall PGP prompting a user to "generate some entropy" by striking random keys?
PGP would measure the entropy as it was being collected, indicating to the user with a cool little progress ...
2
votes
2answers
264 views
Shannon's Entropy measure in Decision Trees
Why is Shannon's Entropy measure used in Decision Tree branching?
Entropy(S) = - p(+)log( p(+) ) - p(-)log( p(-) )
I know it is a measure of the no. of bits needed to encode information; the ...
1
vote
1answer
104 views
Randomly moving images are attracted by the top-left corner of the screen
I'm trying to make images that move randomly over the screen.
Images are positionned randomly over the screen, and then moves from -15px to 15px every 10ms.
But after a few seconds, images gets ...
3
votes
1answer
278 views
How can I calculate the joint entropy of two images in Opencv
I have to calculate the Mutual Information between two gray scaled images. For that I have to calculate Entropy and Joint-Entropy of the images. But I cannot find any function of Entropy and Joint ...
0
votes
0answers
111 views
Comparison of Entropy and Distribution of Bytes in Compressed/Encrypted Data
I have some question which occupies myself for a while.
The entropy test is often used to identify encrypted data. The entropy reaches its maximum when the bytes of the analyzed data are distributed ...
0
votes
1answer
204 views
Using mouse movement and keystrokes to generate entropy for encryption (As seen on MEGA)
I am interested in generating entropy from mouse movements and keystrokes in .NET (for the purposes of encryption this could be either in a Forms application where the mouse movement and keystroke ...
0
votes
1answer
47 views
is a hashed uuid4 a good csrf token?
Is this a good csrf token? Does it have enough entropy, or are there parts that are easily guessable and could reduce the entropy, like the time of the request?
An example python implementation would ...
0
votes
1answer
399 views
Data structure for representing Decision Tree Induction
Currently, I've been involved in some projects related to Data Mining. And, I've to classify the given data sets (.csv format) into different classes by using decision tree induction with GINIsplit as ...
1
vote
3answers
58 views
Is there an advantage to excluding special characters from passwords? [closed]
Recently I ran in to two strange error messages when setting a password, one on the Chipolte mobile ordering app and the other on a financial services portal. In both cases I was prevented from ...
5
votes
1answer
272 views
Wierd output while finding entropy of frames of a video in opencv
#include <cv.h>
#include <highgui.h>
#include <iostream>
#include <cmath>
#include <cstdlib>
#include <fstream>
using namespace std;
typedef struct histBundle {
...
0
votes
1answer
65 views
Entropy-Decoder. Extract unknown number of coded coefficients from data
I need to read data from a stream using the following algorithm:
-Count all consecutive set bits ("1"s) from the stream.
-Then, read k more bits from the stream. K is variable and changes throughout ...
0
votes
0answers
52 views
ws-trust, ws-secureconversation and signing with shared secret key
I have a question about communicating with a STS server and also the message server. I am not using a framework, so i have to handle the system as soap based.
First, i send a request to the STS server ...
-2
votes
1answer
132 views
SQL Server 2008 GUID generation [duplicate]
Possible Duplicate:
how are GUIDs generated in SQL Server?
I wonder how SQL Server 2008 GUIDs are generated? Entropy bits
1
vote
3answers
123 views
Fortran if statement errors
I have a program that is supposed to tell a user if a temperature they entered is absolute zero. If indeed it is, then they should see "no entropy for you", if it is greater, then It should tell them ...
1
vote
3answers
128 views
/dev/random does not block
I am trying to gather true random numbers from /dev/random. Here is my simple code:
u_char buf[256];
memset(buf, 0, 256);
int dev = open("/dev/random", O_RDONLY);
int nbr = read(dev, buf, 100);
...
2
votes
1answer
303 views
Reading entropy_avail file appears to consume entropy [closed]
The question have been asked in here http://www.gossamer-threads.com/lists/linux/kernel/1210167 but I don't see an answer.
AFAIK /proc/sys/kernel/random/entropy_avail should return the size of ...
2
votes
1answer
181 views
How can I exhaust /dev/urandom for testing?
I recently had a bug where I didn't properly handle when the entropy on my linux server got too low and a read of /dev/urandom returned less than the number of bytes expected.
How can I recreate this ...
2
votes
1answer
105 views
Mathematica: Redefine multiplication so that 0*(-Inf) = 0
In my Mathematica program, I do some entropy calculations and I want to use this convention: Log[0]*0 = 0. Is there a clean way to do it or I have to write my own function?
Inspired by ...
0
votes
1answer
65 views
Trying to generate a uniquely decodable code and decode it
I'm trying to encode arbitrary symbols into a bit string, and I don't really understand how I can either generate them or even decode a bit string containing those.
I want to work on arbitrary symbol ...
1
vote
1answer
1k views
Difference between hist and imhist in matlab
What is the difference between hist and imhist functions in Matlab? I have a matrix of color levels values loaded from image with imread and need to count entropy value of the image using histogram.
...
1
vote
2answers
537 views
Entropy of a probability distribution in Excel
I have a matrix in excel. I need to normalize rows and then calculate entropy of each row (considering it as a probability distribution).
For e.g. suppose my matrix is:
2 0 3 5
0 1 0 0
1 ...
-1
votes
1answer
80 views
Generating Entropy on Multiple Arrays and output to MySQL
I have a program that produces a hash of arrays based on MySQL data. Each array has numerical values in it. Using Perl, how do I generate the entropy of each array and output the results in a ...
1
vote
1answer
52 views
Is a phrase a good code?
Introduction
I am working at a "prize codes" system for my website: the administrators can assign credits to an user, giving them a code that they can redeem.
The idea itself is quite easy to ...
4
votes
3answers
123 views
Sources of Entropy on the Web
In order to guarantee honesty of a random number generator, the idea is that users can, if they wish, verify that the number is, in fact, generated from public sources of entropy. This enables the ...
0
votes
1answer
156 views
Online entropy evaluation algorithm
Is there a way to evaluate entropy on a stream of discrete values similar to SumamryStatistics for mean and deviation?
I need this algorithm for real-time solr component, and it will probably iterate ...
3
votes
1answer
1k views
PGP Asymmetric - Not enough random bytes available. Please do some other work to give the OS a chance to collect more entropy
Setup : Ubuntu Server on Virtual Machine with 6 cores and 3GB of RAM.
when I am trying to generate a asymmetric key pair via GPG like this gpg --gen-key . I get the following error :
Not enough ...
1
vote
1answer
370 views
Implementation issues for Shannon's Channel capacity and entropy
Upon partioning a phase space into Alpha partitions, it is intended to find how good that partiton is. In this perspective, we need to find out the source entropy. Now, I googled a lot but could not ...
5
votes
4answers
1k views
Is it possible to generate random numbers using physical sensors?
I've heard about people using light sensors, geiger counters, and other physical sensors to generate random numbers, but I'm skeptical. Is there really a way to generate random numbers from taking ...
0
votes
2answers
112 views
Markov entropy when probabilities are uneven
I've been thinking about information entropy in terms of the Markov equation:
H = -SUM(p(i)lg(p(i)), where lg is the base 2 logarithm.
This assumes that all selections i have equal probability. But ...
-1
votes
3answers
140 views
Real world Algorithm - Measuring uniqueness of input values
I have a list of key value pairs.
For each key, I want to see how unique the values are. For example, for a particular key k1, all the values might be the same. (best case).
For a key k2, half of the ...
0
votes
1answer
186 views
Veracode testing , Detecting and fixing flaws
am working on a web application, which is getting deployed , tested and go live on client side.
Now appl. is in testing mode. Client has used Veracode Testing tool for Checking vulnarabilities.
We ...
0
votes
2answers
203 views
How do you secure your Entropy value
I have an application written in C#. using Net 4.0 where the user will be storing their e-mail password using System.Security.Cryptography to the user configuration file.
The Actual password is ...
5
votes
2answers
1k views
Data Compression : Arithmetic coding unclear
Can anyone please explain arithmetic encoding for data compression with implementation details ? I have surfed through internet and found mark nelson's post but the implementation's technique is ...
3
votes
1answer
77 views
What entropy sources are available on heroku?
I would like to deploy an application to heroku which needs to be able to generate cryptographically secure random numbers. What entropy sources can I use?
12
votes
7answers
1k views
Gathering entropy in web apps to create (more) secure random numbers
after several days of research and discussion i came up with this method to gather entropy from visitors (u can see the history of my research here)
when a user visits i run this code:
...
1
vote
1answer
360 views
Quality of PostgreSQL's random() function?
Let's say I'm creating a table foo with a column bar that should be a very large random integer.
CREATE TABLE foo (
bar bigint DEFAULT round(((9223372036854775807::bigint)::double precision * ...
0
votes
0answers
117 views
Generating different plots from arbitrary 32/64-bit input in R (ex. random integers) [closed]
I've compiled a dataset of 32-bit and 63-bit integer output from a PRNG I need to test. I would like to know how I can pass these samples to R and produce (auto)correlation and distribution plots, as ...
2
votes
3answers
113 views
How can I estimate the entropy content of this input?
I have a 1KHZ triangle wave generator that I am measuring from a PIC micro controller using the analog input. The frequency source for the triangle wave and the analog capture are separate frequency ...
2
votes
1answer
633 views
How to find out the entropy of the English language
How to find out the entropy of the English language by using isolated symbol probabilities of the language?
-1
votes
1answer
127 views
Definition of built in redundancy
Assume that we have 3 bit ascii representation. How can I get the built in redundancy of that representation? I searched internet for days. But still couldn't find something relevant. It will be grate ...
1
vote
1answer
239 views
What is the meaning of “isolated symbol probabilities of English”
In a note I found this phrase:
Using isolated symbol probabilities of English language, you can find out the entropy of the language.
What is actually meant by "isolated symbol probabilities"? ...
1
vote
2answers
179 views
How do I introduce entropy to an encoded Base64 string?
I'm creating a json webservice (C#, WCF) and I need to identify a user. There is no session management, therefore the user would need to send an identifying string for every command. The solution I ...
0
votes
1answer
107 views
is CAVLC decoder enough for entropy part
Is CAVLC decoder enough to decode an encoded bitstream in H.264 ? or Exp_Golomb decoder must be implemented also? (for baseline profile)

