kerneltest/e32utils/nistsecurerng/include/stat_fncs.h
changeset 152 657f875b013e
equal deleted inserted replaced
139:95f71bcdcdb7 152:657f875b013e
       
     1 /*
       
     2 * Portions Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 * The original NIST Statistical Test Suite code is placed in public domain.
       
    16 * (http://csrc.nist.gov/groups/ST/toolkit/rng/documentation_software.html) 
       
    17 * 
       
    18 * This software was developed at the National Institute of Standards and Technology by 
       
    19 * employees of the Federal Government in the course of their official duties. Pursuant
       
    20 * to title 17 Section 105 of the United States Code this software is not subject to 
       
    21 * copyright protection and is in the public domain. The NIST Statistical Test Suite is
       
    22 * an experimental system. NIST assumes no responsibility whatsoever for its use by other 
       
    23 * parties, and makes no guarantees, expressed or implied, about its quality, reliability, 
       
    24 * or any other characteristic. We would appreciate acknowledgment if the software is used.
       
    25 */
       
    26 
       
    27 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
       
    28      S T A T I S T I C A L  T E S T  F U N C T I O N  P R O T O T Y P E S 
       
    29  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
       
    30 
       
    31 #ifndef _STAT_FNCS_H_
       
    32 #define _STAT_FNCS_H_
       
    33 
       
    34 void	Frequency(int n);
       
    35 void	BlockFrequency(int M, int n);
       
    36 void	CumulativeSums(int n);
       
    37 void	Runs(int n);
       
    38 void	LongestRunOfOnes(int n);
       
    39 void	Rank(int n);
       
    40 void	DiscreteFourierTransform(int n);
       
    41 void	NonOverlappingTemplateMatchings(int m, int n);
       
    42 void	OverlappingTemplateMatchings(int m, int n);
       
    43 void	Universal(int n);
       
    44 void	ApproximateEntropy(int m, int n);
       
    45 void	RandomExcursions(int n);
       
    46 void	RandomExcursionsVariant(int n);
       
    47 void	LinearComplexity(int M, int n);
       
    48 void	Serial(int m, int n);
       
    49 
       
    50 #endif // _STAT_FNCS_H_
       
    51