All Projects → dpskvn → ntropy.js

dpskvn / ntropy.js

Licence: MIT license
A random generator (string and number)

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to ntropy.js

ProSelfLC-2021
noisy labels; missing labels; semi-supervised learning; entropy; uncertainty; robustness and generalisation.
Stars: ✭ 45 (+221.43%)
Mutual labels:  entropy
EvenMoreModifiers
A mod for Terraria that adds a system for Modifiers that can apply to items giving various bonuses
Stars: ✭ 21 (+50%)
Mutual labels:  rng
CorBinian
CorBinian: A toolbox for modelling and simulating high-dimensional binary and count-data with correlations
Stars: ✭ 15 (+7.14%)
Mutual labels:  entropy
Trufflehog
Searches through git repositories for high entropy strings and secrets, digging deep into commit history
Stars: ✭ 6,225 (+44364.29%)
Mutual labels:  entropy
lrng
Linux Random Number Generator
Stars: ✭ 57 (+307.14%)
Mutual labels:  rng
PokemonRNGGuides
A repository of Pokemon RNG abuse guides
Stars: ✭ 62 (+342.86%)
Mutual labels:  rng
ProbQA
Probabilistic question-asking system: the program asks, the users answer. The minimal goal of the program is to identify what the user needs (a target), even if the user is not aware of the existence of such a thing/product/service.
Stars: ✭ 43 (+207.14%)
Mutual labels:  entropy
RNG
A simple state-of-the-art C++ random number generator
Stars: ✭ 19 (+35.71%)
Mutual labels:  rng
readhook
Red-team tool to hook libc read syscall with a buffer overflow vulnerability.
Stars: ✭ 31 (+121.43%)
Mutual labels:  entropy
webpassgen
Simple web-based password generator
Stars: ✭ 111 (+692.86%)
Mutual labels:  entropy
Detect It Easy
Program for determining types of files for Windows, Linux and MacOS.
Stars: ✭ 2,982 (+21200%)
Mutual labels:  entropy
hashvis
Rust Program for Deterministic Generation of Random Art.
Stars: ✭ 43 (+207.14%)
Mutual labels:  rng
moac
Generate passwords and analyze their strength given physical limits to computation
Stars: ✭ 16 (+14.29%)
Mutual labels:  entropy
truffleHog
Searches through git repositories for high entropy strings and secrets, digging deep into commit history
Stars: ✭ 6,319 (+45035.71%)
Mutual labels:  entropy
CausalityTools.jl
Algorithms for causal inference and the detection of dynamical coupling from time series, and for approximation of the transfer operator and invariant measures.
Stars: ✭ 45 (+221.43%)
Mutual labels:  entropy
truehunter
Truehunter
Stars: ✭ 30 (+114.29%)
Mutual labels:  entropy
rocRAND
RAND library for HIP programming language
Stars: ✭ 68 (+385.71%)
Mutual labels:  rng
antropy
AntroPy: entropy and complexity of (EEG) time-series in Python
Stars: ✭ 111 (+692.86%)
Mutual labels:  entropy
belg
Boltzmann entropy of a landscape gradient
Stars: ✭ 14 (+0%)
Mutual labels:  entropy
sabre
sabre: Spatial Association Between REgionalizations
Stars: ✭ 34 (+142.86%)
Mutual labels:  entropy

#ntropy.js

##Description ntropy.js is a random string/number generator using entropy collected from mouse movement or device motion as the seed for random content.

It can be used as way for users to generate passwords for themselves, generate password salts during account registration, or even manual session ID creation. There are other possible uses, generating encryption keys, and so on.

##Usage The usage is rather simple. Just point the plugin to the target input field.

	ntropy({limit: 10, pool: "abcdefghijklmnopqrstuvwxyz"}, function (random) {
		console.log(random);
	});

After the random string is generated, the callback is executed.

##Demo

##Options The options object has the following two properties:

limit - the length of the generated string pool - the characters used to generate the string (i.e. 'abcdefghijklmopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'

##License ntropy.js is released under the MIT license. For more info, check the LICENSE file.

##Author Dino Paskvan (http://www.dinopaskvan.com)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].