Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
11answers
10k views

How to solve performance problem with Java SecureRandom?

If you want a cryptographically strong random number in Java, you use SecureRandom. Unfortunately, SecureRandom can be very slow. If it uses /dev/random on Linux, it can block waiting for sufficient ...
15
votes
10answers
6k views

How to calculate the entropy of a file?

How to calculate the entropy of a file? (Or let's just say a bunch of bytes) I have an idea, but I'm not sure that it's mathematically correct. My idea is the following: Create an array of 256 ...
12
votes
9answers
398 views

are projects with high developer turn over rate really a bad thing?

I've inherited a lot of web projects that experienced high developer turn over rates. Sometimes these web projects are a horrible patchwork of band aid solutions. Other times they can be somewhat ...
10
votes
11answers
4k views

What is the computer science definition of entropy?

I've recently started a course on data compression at my university. However, I find the use of the term "entropy" as it applies to computer science rather ambiguous. As far as I can tell, it roughly ...
9
votes
5answers
235 views

sources of “uniqueness”/entropy on embedded systems

I have an embedded system. What I would like for it to do when it powers up or otherwise resets, is to generate a unique ID, so that on different restarts a different unique ID is generated with high ...
9
votes
16answers
2k views

Alternative Entropy Sources

Okay, I guess this is entirely subjective and whatnot, but I was thinking about entropy sources for random number generators. It goes that most generators are seeded with the current time, correct? ...
8
votes
4answers
405 views

How does the entropy of a string of English text signify low quality?

Jeff Atwood recently tweeted a link to a CodeReview post where he wanted to know if the community could improve his "calculating entropy of a string" code snippet. He explained, "We're calculating ...
5
votes
3answers
535 views

How good is SecRandomCopyBytes?

I'm principally interested in the implementation of SecRandomCopyBytes on iOS, if it differs from the OS X implementation. (I would presume that it does, since a mobile device has more and more ...
5
votes
4answers
2k views

How do I compute the approximate entropy of a bit string?

Is there a standard way to do this? Googling -- "approximate entropy" bits -- uncovers multiple academic papers but I'd like to just find a chunk of pseudocode defining the approximate entropy for a ...
5
votes
3answers
353 views

How random is urandom?

In Linux, just how random is /dev/urandom/? Is it considered safe? Also is it possible to get a stream of 1's?
5
votes
4answers
2k views

Shannon's entropy formula. Help my confusion

my understanding of the entropy formula is that it's used to compute the minimum number of bits required to represent some data. It's usually worded differently when defined, but the previous ...
4
votes
2answers
100 views

How (if at all) does a predictable random number generator get more secure after SHA-1ing its output?

This article states that Despite the fact that the Mersenne Twister is an extremely good pseudo-random number generator, it is not cryptographically secure by itself for a very simple reason. It ...
4
votes
1answer
111 views

Are Entropy results order-dependent when using SameTest

Mathematica's Entropy function is order-dependent when using the SameTest option. That is: Entropy[RandomSample[Range[11]], SameTest->(Abs[#1-#2]>1&) ] will give different results many ...
4
votes
1answer
1k views

C++ Decision Tree Implementation Question: Think In Code

I've been coding for a few years but I still haven't gotten the hang of pseudo-coding or actually thinking things out in code yet. Due to this problem, I'm having trouble figuring out exactly what to ...
4
votes
4answers
106 views

Safe mixing of entropy sources

Let us assume we're generating very large (e.g. 128 or 256bit) numbers to serve as keys for a block cipher. Let us further assume that we wear tinfoil hats (at least when outside). Being so ...
4
votes
2answers
391 views

Help with the calculation (and usefulness) of password entropy

This is a two part question: Part 1 First, dealing with calculating the entropy of a password in PHP. I have been unable to find any code examples that are empirically sound and would really like ...
4
votes
2answers
488 views

Weighted Decision Trees using Entropy

I'm building a binary classification tree using mutual information gain as the splitting function. But since the training data is skewed toward a few classes, it is advisable to weight each training ...
3
votes
9answers
342 views

How to generate a number in arbitrary range using random()={0..1} preserving uniformness and density?

Generate a random number in range [x..y] where x and y are any arbitrary floating point numbers. Use function random(), which returns a random floating point number in range [0..1] from P uniformly ...
3
votes
2answers
99 views

Shuffling array based on seed to get always the same result?

I need to shuffle an array based on a seed number so I can get the same shuffle if I need it. For example: 1. print_r( shuffleIt( $array, 2 ) ); 2. print_r( shuffleIt( $array, 6 ) ); 3. print_r( ...
3
votes
1answer
79 views

How to stop /dev/random population from entropy pool. Can I unload a module to do it?

I'm making a TRNG that talks to my PC via USB as a CDC device. I want to stop /dev/random from sourcing entropy from the entropy pool entirely and use my data instead. The theory is that the pool can ...
3
votes
1answer
177 views

Cross Entropy for Language modelling

im currently working on a classification task using language modelling. The first part of the project involved using n-gram language models to classify documents using c5.0. The final part of the ...
3
votes
1answer
486 views

Get, or calculate the entropy of an image with Ruby and imagemagick

How to find the "entropy" with imagemagick, preferably mini_magic, in Ruby? I need this as part of a larger project, finding "interestingness" in an image so to crop it. I found a good example in ...
3
votes
2answers
704 views

Securely Storing Optional Entropy While Using DPAPI

So I am trying to store the symmetric key using DPAPI. All is well and great, but what to do with the entropy? This answered question here really doesn't provide enough insight. It seems like a ...
3
votes
1answer
207 views

DPAPI + Entropy

We have a WPF app that allows our users to download encrypted content and we want to provide the ability to decrypt this content off-line. The idea is to download the keys and store them using the ...
3
votes
5answers
147 views

I need some weak entropy. I know I can use an unitialized buffer, but if I just need an integer's worth, would its address suffice instead?

I'm on Linux, which has address space layout randomization. Is it necessary to to declare a buffer on the stack, leave it uninitialized, and use it for entropy, or can I just take the address of ...
3
votes
1answer
192 views

Entropy encoding of a binary stream

I want to compress a binary stream. I know that after each '1' there is an higher probability of finding a '0', and after each '0' there is an higher probability of finding a '1'. How should I encode ...
2
votes
4answers
62 views

Methods of Creating Higher Levels of Entropy in a Seed

For fun I have been experimenting with methods of encryption. One of the methods I am using requires a seed value. I would like to feed it with true random numbers. I know a standard method of ...
2
votes
1answer
103 views

What is a normal entropy_avail value for apache?

My entropy value is around 130-180 while a test script is running and 150-180 normally. Would that value have any bearing on static HTML pages that don't use any random() functionality? Or do all ...
2
votes
3answers
217 views

What entropy sources are available on Windows?

I want to produce a random cryptographic key on Windows. Where can I obtain entropy? I would like my entropy function to work without a network connection and to be reliable on Windows 2000 and ...
2
votes
0answers
260 views

JavaCard random number generation speed

I'm implementing an authentication protocol using ECDSA on javacard. The funniest thing I noticed was the "secure random number genrator" takes 700ms for execution. This can be considered as ...
2
votes
1answer
141 views

what part of numbers has more entropy?

Given the sequence pf numbers N1, N2, N3... from some source, not a PRNG but say sensor or logging data of some kind, is it safe to assume that processing it like this Nn / B = Qn  Rem Mn ...
2
votes
4answers
268 views

Does any software exist for building entropy pools from user input?

It'd be nice to be able, for some purposes, to bypass any sort of algorithmically generated random numbers in favor of natural input---say, dice rolls. Cryptographic key generation, for instance, ...
1
vote
1answer
52 views

Usage of entropy function

I was trying to find the entropy of a certain probability distribution in MATLAB. For p, I tried doing E = -sum(p .* log2(p)) and Echeck = entropy(p) Shouldn't E and Echeck be same? The ...
1
vote
1answer
55 views

Create a bijection to get an unordered counter with known max

I have a counter with a known maximum (called max). max can be big (actually it will be either 36^40 - 1 or 62^40 - 1). I want a bijection b from [0..max] to [0..max] with the following property: ...
1
vote
0answers
37 views

Calculating efficiency of byte pair encoding

How do you calculate the efficiency of the byte pair encoding algorithm? It seems to me that I cannot do the same as with Huffman for example using entropy calculations. Any answers are much ...
1
vote
1answer
54 views

Computing entropy for data compression

I am a little confused about how they calculate "average number of bits per symbol". Is this calculated by taking the probability of each character and multiplying it by the lg(1/probability) like ...
1
vote
3answers
99 views

how to disable a linux entropy pool source

How do I disable entropy sources? Here's a little background on what I'm trying to do for them what want to know: I'm building a little RNG device that talks to my pc via usb. I want it to be the ...
1
vote
1answer
89 views

Entropy in binary files - what's the purpose?

I've read the Shannon's theory to entropy and how to implement such an algorithm for a binary file (pretty easy) But I can't figure out what's the purpose on calculating the entropy of a .exe or any ...
1
vote
1answer
42 views

entropy minimization for inhomogeneity correction in python

Does somebody know about a entropy minimization implementation in python? I want to use this to correct inhomogeneity in histology images. Reference about the algorithm I am talking about.
1
vote
3answers
242 views

Getting linux to buffer /dev/random

I need a reasonable supply of high-quality random data for an application I'm writing. Linux provides the /dev/random file for this purpose which is ideal; however, because my server is a ...
1
vote
1answer
250 views

CryptGenRandom Entropy

CryptGenRandom is a random number generator function in CryptoAPI in Windows. How much entropy has that random number generator ? I have already looked a lot, but I couldn't find it. Thanks in ...
1
vote
5answers
334 views

How can I determine the statistical randomness of a binary string?

How can I determine the statistical randomness of a binary string? Ergo, how can I code my own test, and return a single value that corresponds to the statistical randomness, a value between 0 and ...
1
vote
1answer
542 views

Mutual Information / Entropy Calculation Help

Hoping someone can give me some pointers with this entropy problem. Say X is chosen randomly from the uniform integer distribution 0-32 (inclusive). I calculate the entropy, H(X) = 32 bits, as each ...
0
votes
0answers
25 views

Calculating mutual information between two columns

I need to evaluate connections between datasets. For example, assume the following dataset, +--------------------+ | Last name | Tel no | +------------------- + | Banks | XXX | | Banks | ...
0
votes
1answer
71 views

Entropy Pool Generator

Ok, so I want to begin programming an entropy pool generator for linux. I've been reading up on sources of entropy generation, but its seems like most powerful entropy sources come from reading ...
0
votes
0answers
55 views

How can I test the quality of public/private keys [closed]

I have to generate a large number of public/private key pairs using elliptic curves (ECDSA algorithm). How can I assess the quality (randomness, entropy, etc) of my keys?
0
votes
1answer
74 views

Find best attribute in decision tree

i've come across one question Color Flavor Edibility Red Grape Yes Red Cherry Yes Green Grape Yes Green Cherry No Blue Grape No Blue Cherry No In this ...
0
votes
2answers
126 views

Computation of Mutual Information

Suppose M is a set of objects m each having attributes X and Y. Now if X and Y can have only one value for given m (i.e. X,Y are random variables with P(X=x_i|M=m_i), P(Y=y_i|M=m_i)), it's possible to ...
0
votes
2answers
48 views

Is user delay between random takes is good improvement for PRNG?

I thought that for making random choices for example for next track in a player or next page in the browser it could be possible to use time as 'natural phenomenon', for example decent RPNG just can ...
0
votes
1answer
377 views

Picture entropy calculation

I've run into some nasty problem with my recorder. Some people are still using it with analog tuners, and analog tuners have a tendency to spit out 'snow' if there is no signal present. The Problem ...

1 2