Searched refs:CRYPTOPP_API (Results 1 - 25 of 35) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dsha.h12 static void CRYPTOPP_API InitState(HashWordType *state);
13 static void CRYPTOPP_API Transform(word32 *digest, const word32 *data);
14 static const char * CRYPTOPP_API StaticAlgorithmName() {return "SHA-1";}
26 static void CRYPTOPP_API InitState(HashWordType *state);
27 static void CRYPTOPP_API Transform(word32 *digest, const word32 *data);
28 static const char * CRYPTOPP_API StaticAlgorithmName() {return "SHA-256";}
38 static void CRYPTOPP_API InitState(HashWordType *state);
39 static void CRYPTOPP_API Transform(word32 *digest, const word32 *data) {SHA256::Transform(digest, data);}
40 static const char * CRYPTOPP_API StaticAlgorithmName() {return "SHA-224";}
47 static void CRYPTOPP_API InitStat
[all...]
H A Dnbtheory.h12 CRYPTOPP_DLL const word16 * CRYPTOPP_API GetPrimeTable(unsigned int &size);
17 CRYPTOPP_DLL Integer CRYPTOPP_API MaurerProvablePrime(RandomNumberGenerator &rng, unsigned int bits);
18 CRYPTOPP_DLL Integer CRYPTOPP_API MihailescuProvablePrime(RandomNumberGenerator &rng, unsigned int bits);
20 CRYPTOPP_DLL bool CRYPTOPP_API IsSmallPrime(const Integer &p);
24 CRYPTOPP_DLL bool CRYPTOPP_API TrialDivision(const Integer &p, unsigned bound);
27 CRYPTOPP_DLL bool CRYPTOPP_API SmallDivisorsTest(const Integer &p);
30 CRYPTOPP_DLL bool CRYPTOPP_API IsFermatProbablePrime(const Integer &n, const Integer &b);
31 CRYPTOPP_DLL bool CRYPTOPP_API IsLucasProbablePrime(const Integer &n);
33 CRYPTOPP_DLL bool CRYPTOPP_API IsStrongProbablePrime(const Integer &n, const Integer &b);
34 CRYPTOPP_DLL bool CRYPTOPP_API IsStrongLucasProbablePrim
[all...]
H A Dfips140.h21 CRYPTOPP_DLL bool CRYPTOPP_API FIPS_140_2_ComplianceEnabled();
27 CRYPTOPP_DLL void CRYPTOPP_API DoPowerUpSelfTest(const char *moduleFilename, const byte *expectedModuleMac);
30 CRYPTOPP_DLL void CRYPTOPP_API DoDllPowerUpSelfTest();
33 CRYPTOPP_DLL void CRYPTOPP_API SimulatePowerUpSelfTestFailure();
36 CRYPTOPP_DLL PowerUpSelfTestStatus CRYPTOPP_API GetPowerUpSelfTestStatus();
38 typedef PowerUpSelfTestStatus (CRYPTOPP_API * PGetPowerUpSelfTestStatus)();
40 CRYPTOPP_DLL MessageAuthenticationCode * CRYPTOPP_API NewIntegrityCheckingMAC();
42 CRYPTOPP_DLL bool CRYPTOPP_API IntegrityCheckModule(const char *moduleFilename, const byte *expectedModuleMac, SecByteBlock *pActualMac = NULL, unsigned long *pMacFileLocation = NULL);
H A Ddll.h63 typedef void * (CRYPTOPP_API * PNew)(size_t);
64 typedef void (CRYPTOPP_API * PDelete)(void *);
65 typedef void (CRYPTOPP_API * PGetNewAndDelete)(PNew &, PDelete &);
66 typedef new_handler (CRYPTOPP_API * PSetNewHandler)(new_handler);
67 typedef void (CRYPTOPP_API * PSetNewAndDelete)(PNew, PDelete, PSetNewHandler);
H A Dbase64.h31 static const int * CRYPTOPP_API GetDecodingLookupArray();
H A Dasn.h59 CRYPTOPP_DLL size_t CRYPTOPP_API DERLengthEncode(BufferedTransformation &out, lword length);
61 CRYPTOPP_DLL bool CRYPTOPP_API BERLengthDecode(BufferedTransformation &in, size_t &length);
63 CRYPTOPP_DLL void CRYPTOPP_API DEREncodeNull(BufferedTransformation &out);
64 CRYPTOPP_DLL void CRYPTOPP_API BERDecodeNull(BufferedTransformation &in);
66 CRYPTOPP_DLL size_t CRYPTOPP_API DEREncodeOctetString(BufferedTransformation &out, const byte *str, size_t strLen);
67 CRYPTOPP_DLL size_t CRYPTOPP_API DEREncodeOctetString(BufferedTransformation &out, const SecByteBlock &str);
68 CRYPTOPP_DLL size_t CRYPTOPP_API BERDecodeOctetString(BufferedTransformation &in, SecByteBlock &str);
69 CRYPTOPP_DLL size_t CRYPTOPP_API BERDecodeOctetString(BufferedTransformation &in, BufferedTransformation &str);
72 CRYPTOPP_DLL size_t CRYPTOPP_API DEREncodeTextString(BufferedTransformation &out, const std::string &str, byte asnTag);
73 CRYPTOPP_DLL size_t CRYPTOPP_API BERDecodeTextStrin
[all...]
H A Dinteger.h101 static const Integer & CRYPTOPP_API Zero();
103 static const Integer & CRYPTOPP_API One();
105 static const Integer & CRYPTOPP_API Two();
121 static Integer CRYPTOPP_API Power2(size_t e);
337 CRYPTOPP_DLL friend Integer CRYPTOPP_API a_times_b_mod_c(const Integer &x, const Integer& y, const Integer& m);
339 CRYPTOPP_DLL friend Integer CRYPTOPP_API a_exp_b_mod_c(const Integer &x, const Integer& e, const Integer& m);
342 static void CRYPTOPP_API Divide(Integer &r, Integer &q, const Integer &a, const Integer &d);
344 static void CRYPTOPP_API Divide(word &r, Integer &q, const Integer &a, word d);
347 static void CRYPTOPP_API DivideByPowerOf2(Integer &r, Integer &q, const Integer &a, unsigned int n);
350 static Integer CRYPTOPP_API Gc
[all...]
H A Dbase32.h33 static const int * CRYPTOPP_API GetDefaultDecodingLookupArray();
H A Dfips140.cpp38 PowerUpSelfTestStatus CRYPTOPP_API GetPowerUpSelfTestStatus()
H A Dhex.h31 static const int * CRYPTOPP_API GetDefaultDecodingLookupArray();
H A Dgf2n.h59 static PolynomialMod2 CRYPTOPP_API Monomial(size_t i);
61 static PolynomialMod2 CRYPTOPP_API Trinomial(size_t t0, size_t t1, size_t t2);
63 static PolynomialMod2 CRYPTOPP_API Pentanomial(size_t t0, size_t t1, size_t t2, size_t t3, size_t t4);
65 static PolynomialMod2 CRYPTOPP_API AllOnes(size_t n);
68 static const PolynomialMod2 & CRYPTOPP_API Zero();
70 static const PolynomialMod2 & CRYPTOPP_API One();
219 static PolynomialMod2 CRYPTOPP_API Gcd(const PolynomialMod2 &a, const PolynomialMod2 &n);
224 static void CRYPTOPP_API Divide(PolynomialMod2 &r, PolynomialMod2 &q, const PolynomialMod2 &a, const PolynomialMod2 &d);
356 CRYPTOPP_DLL GF2NP * CRYPTOPP_API BERDecodeGF2NP(BufferedTransformation &bt);
H A Demsa2.h62 static const char * CRYPTOPP_API StaticAlgorithmName() {return "EMSA2";}
H A Doaep.h29 static std::string CRYPTOPP_API StaticAlgorithmName() {return std::string("OAEP-") + MGF::StaticAlgorithmName() + "(" + H::StaticAlgorithmName() + ")";}
H A Drijndael.h15 CRYPTOPP_DLL static const char * CRYPTOPP_API StaticAlgorithmName() {return CRYPTOPP_RIJNDAEL_NAME;}
H A Dskipjack.h15 CRYPTOPP_DLL static const char * CRYPTOPP_API StaticAlgorithmName() {return "SKIPJACK";}
H A Deccrypto.h96 static std::string CRYPTOPP_API StaticAlgorithmNamePrefix() {return "EC";}
108 static OID CRYPTOPP_API GetNextRecommendedParametersOID(const OID &oid);
216 static const char * CRYPTOPP_API StaticAlgorithmName() {return "ECDSA";}
224 static const char * CRYPTOPP_API StaticAlgorithmName() {return "ECNR";}
252 static std::string CRYPTOPP_API StaticAlgorithmName() {return "ECIES";} // TODO: fix this after name is standardized
H A Ddes.h58 CRYPTOPP_DLL static const char * CRYPTOPP_API StaticAlgorithmName() {return "DES-EDE2";}
82 CRYPTOPP_DLL static const char * CRYPTOPP_API StaticAlgorithmName() {return "DES-EDE3";}
H A Dpkcspad.h58 static const char * CRYPTOPP_API StaticAlgorithmName() {return "EMSA-PKCS1-v1_5";}
H A Dpssr.h49 static std::string CRYPTOPP_API StaticAlgorithmName() {return std::string(ALLOW_RECOVERY ? "PSSR-" : "PSS-") + MGF::StaticAlgorithmName();}
H A Dseckey.h75 static size_t CRYPTOPP_API StaticGetValidKeyLength(size_t) {return KEYLENGTH;}
98 static size_t CRYPTOPP_API StaticGetValidKeyLength(size_t n)
123 static size_t CRYPTOPP_API StaticGetValidKeyLength(size_t keylength)
H A Dgfpcrypt.h60 static std::string CRYPTOPP_API StaticAlgorithmNamePrefix() {return "";}
155 static const char * CRYPTOPP_API StaticAlgorithmName() {return "DSA-1363";}
187 static const char * CRYPTOPP_API StaticAlgorithmName() {return "NR";}
391 static const char * CRYPTOPP_API StaticAlgorithmName() {return "DSA";}
398 static bool CRYPTOPP_API GeneratePrimes(const byte *seed, unsigned int seedLength, int &counter,
401 static bool CRYPTOPP_API IsValidPrimeLength(unsigned int pbits)
531 static std::string CRYPTOPP_API StaticAlgorithmName() {return "DLIES";} // TODO: fix this after name is standardized
H A Dmodes.h99 static const char * CRYPTOPP_API StaticAlgorithmName() {return "CFB";}
128 static const char * CRYPTOPP_API StaticAlgorithmName() {return "OFB";}
142 static const char * CRYPTOPP_API StaticAlgorithmName() {return "CTR";}
189 static const char * CRYPTOPP_API StaticAlgorithmName() {return "ECB";}
198 static const char * CRYPTOPP_API StaticAlgorithmName() {return "CBC";}
213 static const char * CRYPTOPP_API StaticAlgorithmName() {return "CBC/CTS";}
272 static std::string CRYPTOPP_API StaticAlgorithmName()
H A Dbasecode.h52 static void CRYPTOPP_API InitializeDecodingLookupArray(int *lookup, const byte *alphabet, unsigned int base, bool caseInsensitive);
H A Dconfig.h418 #define CRYPTOPP_API __cdecl macro
423 #define CRYPTOPP_API
H A Drsa.h123 static const char * CRYPTOPP_API StaticAlgorithmName() {return "RSA";}
143 static const char * CRYPTOPP_API StaticAlgorithmName() {return "RSA-ISO";}

Completed in 123 milliseconds

12