OS4 DepotLogo by Nickman 
(anonymous IP: 3.144.172.115,2193) 
 HomeRecentStatsSearchSubmitUploadsMirrorsContactInfoDisclaimerConfigAdmin
 Menu

 Features
   Crashlogs
   Bug tracker
   Locale browser
 

 Categories

   o Audio (343)
   o Datatype (51)
   o Demo (203)
   o Development (596)
   o Document (22)
   o Driver (97)
   o Emulation (147)
   o Game (1004)
   o Graphics (497)
   o Library (115)
   o Network (232)
   o Office (66)
   o Utility (923)
   o Video (69)

Total files: 4365

Full index file
Recent index file

 Links

  Amigans.net
  OpenAmiga
  Aminet
  IntuitionBase


Support the site


 Readme for:  Audio » Misc » ahirng.lha

Ahirng

Description: Random Number Generator via AHI
Download: ahirng.lha       (TIPS: Use the right click menu if your browser takes you back here all the time)
Size: 97kb
Version: 1.2
Date: 17 Mar 2012
Author: Rupert Hausberger , aos4 port by kas1e
Submitter: kas1e
Email: kas1e/yandex ru
Homepage: http://natmeg.mooo.com/
Requirements: mui, info.datatype
Category: audio/misc
License: Other
Distribute: yes
Min OS Version: 4.0
FileID: 6963
 
Snapshots:
 
Comments: 0
Snapshots: 1
Videos: 0
Downloads: 72  (Current version)
384  (Accumulated)
Votes: 0 (0/0)  (30 days/7 days)

Show comments Show snapshots Show videos Show content Show crashlogs Replace file 
Description
===========
  AHIRNG (Audio Hardware Interface Random Number Generator) is a tool to
  generate REAL random number from a soundcard.

Requirements
============
  - AmigaOS 4.x, info.datatype
  - NList classes
  - AHI 4.x

  - 44khz/16bit soundcard
  - Analoge noise source

Installation
============
  Installation is very simple.
  Just drag the AHIRNG-drawer where you like, it does not need assigns.

Usage
=====
  Connect your Pegasos-onboard/Soundcard line-in to a analoge radio/SAT
receiver.
  Remove the areal from the receiver so you only hear the pink-noise. This is
our
  source for the random numbers.

  Now start the tool and press 'Monitor'. Adjust the input-gain to about ~90%.
  Watch the gauges, they should be around ~(+-)25.000 to (+-)30.000.

  Now select the output file, press 'Record' and see the random bytes comming...
  If the needed amount of random-bytes has been recorded press 'Stop'. Now press
  "Analyse output file" to check the quality. Quality should be at least 'High'
in
  all five tests for randomness...

  Technical
  ---------
  Sampling is done at 44khz in 16bit. This means we got a raw-stream of
  44000 * 2 * 2 bytes/s (44000hz * 2 bytes (16bits) * 2 channels) = 176.000
bytes/s
  Next step is to convert this stream into quality random numbers. This is done
  with the following function:

  for (i = 0; i < 44000; i++) //for every second
  {
     UWORD l = ((((ULONG *)rawdata)[i] >> 16) & 0xffff);  //extract left channel
     UWORD r =  (((ULONG *)rawdata)[43999 - i] & 0xffff); //extract right
channel and invert

     rnddata[i] = (l - r) & 0xff; //substract the inverted left channel from the
right
  }

  ToolTypes
  ---------
  TOOLPRI/K/N - Set to toolpri from -127 to 127, defaults to 0

Author
======
  ©2005-2012 Rupert Hausberger <natmeg()gmx.net>
  http://natmeg.mooo.com/

Copyrights
==========
NList : ©2001-2012 NList Open Source Team
        http://www.sourceforge.net/projects/nlist-classes/

License
=======
  GPL. Please refer to the file COPYING for details.

History
=======
  Please refer to the file ChangeLog for details.
 



Copyright © 2004-2024 by Björn Hagström All Rights Reserved