Searched refs:AlgorithmName (Results 1 - 22 of 22) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dauthenc.cpp65 throw BadState(AlgorithmName(), "Resynchronize", "key is set");
84 throw BadState(AlgorithmName(), "Update", "setting key and IV");
108 throw InvalidArgument(AlgorithmName() + ": message length exceeds maximum");
115 throw BadState(AlgorithmName(), "ProcessData", "setting key and IV");
117 throw BadState(AlgorithmName(), "ProcessData was called after footer input has started");
139 throw InvalidArgument(AlgorithmName() + ": header length of " + IntToString(m_totalHeaderLength) + " exceeds the maximum of " + IntToString(MaxHeaderLength()));
144 throw InvalidArgument(AlgorithmName() + ": additional authenticated data (AAD) cannot be input after data to be encrypted or decrypted");
146 throw InvalidArgument(AlgorithmName() + ": footer length of " + IntToString(m_totalFooterLength) + " exceeds the maximum of " + IntToString(MaxFooterLength()));
153 throw BadState(AlgorithmName(), "TruncatedFinal", "setting key and IV");
H A Dadler32.h18 std::string AlgorithmName() const {return StaticAlgorithmName();} function in class:Adler32
H A Dhmac.h51 std::string AlgorithmName() const {return std::string("HMAC(") + m_hash.AlgorithmName() + ")";} function in class:HMAC
H A Dccm.cpp18 throw InvalidArgument(AlgorithmName() + ": block size of underlying block cipher is not 16");
22 throw InvalidArgument(AlgorithmName() + ": DigestSize must be 4, 6, 8, 10, 12, 14, or 16");
54 throw BadState(AlgorithmName(), "SpecifyDataLengths", "or after State_IVSet");
106 throw InvalidArgument(AlgorithmName() + ": header length doesn't match that given in SpecifyDataLengths");
122 throw InvalidArgument(AlgorithmName() + ": message length doesn't match that given in SpecifyDataLengths");
H A Dcrc.h28 std::string AlgorithmName() const {return StaticAlgorithmName();} function in class:CRC32
H A Deax.h15 std::string AlgorithmName() const function in class:EAX_Base
16 {return GetMAC().GetCipher().AlgorithmName() + std::string("/EAX");}
H A Dvmac.h13 std::string AlgorithmName() const {return std::string("VMAC(") + GetCipher().AlgorithmName() + ")-" + IntToString(DigestSize()*8);} function in class:VMAC_Base
H A Dccm.h17 std::string AlgorithmName() const function in class:CCM_Base
18 {return GetBlockCipher().AlgorithmName() + std::string("/CCM");}
H A Dgcm.h17 std::string AlgorithmName() const function in class:GCM_Base
18 {return GetBlockCipher().AlgorithmName() + std::string("/GCM");}
H A Dcryptlib.cpp72 throw InvalidKeyLength(GetAlgorithm().AlgorithmName(), length);
78 throw InvalidArgument(GetAlgorithm().AlgorithmName() + ": this object requires an IV");
84 throw InvalidArgument(GetAlgorithm().AlgorithmName() + ": this object cannot use a null IV");
92 throw InvalidArgument(GetAlgorithm().AlgorithmName() + ": IV length " + IntToString(size) + " is less than the minimum of " + IntToString(MinIVLength()));
94 throw InvalidArgument(GetAlgorithm().AlgorithmName() + ": IV length " + IntToString(size) + " exceeds the maximum of " + IntToString(MaxIVLength()));
194 throw NotImplemented(AlgorithmName() + ": this object does't support a special last block");
200 throw InvalidArgument(GetAlgorithm().AlgorithmName() + ": header length " + IntToString(headerLength) + " exceeds the maximum of " + IntToString(MaxHeaderLength()));
203 throw InvalidArgument(GetAlgorithm().AlgorithmName() + ": message length " + IntToString(messageLength) + " exceeds the maximum of " + IntToString(MaxMessageLength()));
206 throw InvalidArgument(GetAlgorithm().AlgorithmName() + ": footer length " + IntToString(footerLength) + " exceeds the maximum of " + IntToString(MaxFooterLength()));
284 std::string AlgorithmName() cons function in class:ClassNullRNG
[all...]
H A Ddh.h75 throw SelfTestFailure(this->AlgorithmName() + ": pairwise consistency test failed");
81 std::string AlgorithmName() const {return StaticAlgorithmName();} function in class:DH_Domain
H A Dfilters.h268 std::string AlgorithmName() const {return m_cipher.AlgorithmName();} function in class:StreamTransformationFilter
294 std::string AlgorithmName() const {return m_hashModule.AlgorithmName();} function in class:HashFilter
321 std::string AlgorithmName() const {return m_hashModule.AlgorithmName();} function in class:HashVerificationFilter
369 std::string AlgorithmName() const {return m_hashVerifier.AlgorithmName();} function in class:AuthenticatedDecryptionFilter
391 std::string AlgorithmName() const {return m_signer.AlgorithmName();} function in class:SignerFilter
418 std::string AlgorithmName() const {return m_verifier.AlgorithmName();} function in class:SignatureVerificationFilter
[all...]
H A Dpubkey.cpp150 throw InvalidArgument(AlgorithmName() + ": this key is too short to encrypt any messages");
152 throw InvalidArgument(AlgorithmName() + ": message length of " + IntToString(plaintextLength) + " exceeds the maximum of " + IntToString(FixedMaxPlaintextLength()) + " for this public key");
H A Dsimple.h28 std::string AlgorithmName() const {return ALGORITHM_INFO::StaticAlgorithmName();} function in class:AlgorithmImpl
201 std::string AlgorithmName() const {return "BitBucket";} function in class:BitBucket
H A Diterhash.cpp19 throw HashInputTooLong(this->AlgorithmName());
H A Dseckey.h51 throw InvalidRounds(alg->AlgorithmName(), rounds);
H A Dfipstest.cpp215 throw SelfTestFailure(encryptor.AlgorithmName() + ": pairwise consistency test failed");
240 throw SelfTestFailure(signer.AlgorithmName() + ": pairwise consistency test failed");
H A Dmodes.h287 std::string AlgorithmName() const function in class:CipherModeFinalTemplate_ExternalCipher
288 {return (this->m_cipher ? this->m_cipher->AlgorithmName() + "/" : std::string("")) + BASE::StaticAlgorithmName();}
H A Dcryptlib.h350 virtual std::string AlgorithmName() const {return "unknown";} function in class:Algorithm
401 virtual unsigned int IVSize() const {throw NotImplemented(GetAlgorithm().AlgorithmName() + ": this object doesn't support resynchronization");}
409 virtual void Resynchronize(const byte *iv, int ivLength=-1) {throw NotImplemented(GetAlgorithm().AlgorithmName() + ": this object doesn't support resynchronization");}
666 virtual std::string AlgorithmName() const =0;
H A Dgcm.cpp75 throw InvalidArgument(AlgorithmName() + ": block size of underlying block cipher is not 16");
H A Dtest.cpp477 cout << filters[i]->AlgorithmName() << ": ";
H A Dfilters.cpp576 throw InvalidArgument("StreamTransformationFilter: PKCS_PADDING and ONE_AND_ZEROS_PADDING cannot be used with " + m_cipher.AlgorithmName());

Completed in 214 milliseconds