Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
16bdbafa
Commit
16bdbafa
authored
Sep 08, 2017
by
Alexey.Musinov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for build
parent
089871d3
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
97 additions
and
65 deletions
+97
-65
Common/3dParty/cryptopp/algparam.h
Common/3dParty/cryptopp/algparam.h
+9
-3
Common/3dParty/cryptopp/ec2n.h
Common/3dParty/cryptopp/ec2n.h
+3
-3
Common/3dParty/cryptopp/eccrypto.h
Common/3dParty/cryptopp/eccrypto.h
+14
-14
Common/3dParty/cryptopp/ecp.h
Common/3dParty/cryptopp/ecp.h
+3
-3
Common/3dParty/cryptopp/filters.h
Common/3dParty/cryptopp/filters.h
+6
-1
Common/3dParty/cryptopp/gf2n.h
Common/3dParty/cryptopp/gf2n.h
+5
-5
Common/3dParty/cryptopp/gfpcrypt.h
Common/3dParty/cryptopp/gfpcrypt.h
+6
-6
Common/3dParty/cryptopp/iterhash.h
Common/3dParty/cryptopp/iterhash.h
+5
-5
Common/3dParty/cryptopp/modarith.h
Common/3dParty/cryptopp/modarith.h
+9
-3
Common/3dParty/cryptopp/modes.h
Common/3dParty/cryptopp/modes.h
+20
-13
Common/3dParty/cryptopp/osrng.h
Common/3dParty/cryptopp/osrng.h
+1
-1
Common/3dParty/cryptopp/secblock.h
Common/3dParty/cryptopp/secblock.h
+14
-6
Common/3dParty/cryptopp/strciphr.h
Common/3dParty/cryptopp/strciphr.h
+2
-2
No files found.
Common/3dParty/cryptopp/algparam.h
View file @
16bdbafa
...
@@ -478,9 +478,15 @@ protected:
...
@@ -478,9 +478,15 @@ protected:
T
m_value
;
T
m_value
;
};
};
//template class AlgorithmParametersTemplate<bool>;
#ifdef _IOS
//template class AlgorithmParametersTemplate<int>;
template
class
AlgorithmParametersTemplate
<
bool
>;
//template class AlgorithmParametersTemplate<ConstByteArrayParameter>;
template
class
AlgorithmParametersTemplate
<
int
>;
template
class
AlgorithmParametersTemplate
<
ConstByteArrayParameter
>;
#else
CRYPTOPP_DLL_TEMPLATE_CLASS
AlgorithmParametersTemplate
<
bool
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
AlgorithmParametersTemplate
<
int
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
AlgorithmParametersTemplate
<
ConstByteArrayParameter
>
;
#endif
//! \class AlgorithmParameters
//! \class AlgorithmParameters
//! \brief An object that implements NameValuePairs
//! \brief An object that implements NameValuePairs
...
...
Common/3dParty/cryptopp/ec2n.h
View file @
16bdbafa
...
@@ -38,7 +38,7 @@ struct CRYPTOPP_DLL EC2NPoint
...
@@ -38,7 +38,7 @@ struct CRYPTOPP_DLL EC2NPoint
PolynomialMod2
x
,
y
;
PolynomialMod2
x
,
y
;
};
};
template
class
AbstractGroup
<
EC2NPoint
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
AbstractGroup
<
EC2NPoint
>
;
//! Elliptic Curve over GF(2^n)
//! Elliptic Curve over GF(2^n)
class
CRYPTOPP_DLL
EC2N
:
public
AbstractGroup
<
EC2NPoint
>
class
CRYPTOPP_DLL
EC2N
:
public
AbstractGroup
<
EC2NPoint
>
...
@@ -102,8 +102,8 @@ private:
...
@@ -102,8 +102,8 @@ private:
mutable
Point
m_R
;
mutable
Point
m_R
;
};
};
template
class
DL_FixedBasePrecomputationImpl
<
EC2N
::
Point
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_FixedBasePrecomputationImpl
<
EC2N
::
Point
>
;
template
class
DL_GroupPrecomputation
<
EC2N
::
Point
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_GroupPrecomputation
<
EC2N
::
Point
>
;
template
<
class
T
>
class
EcPrecomputation
;
template
<
class
T
>
class
EcPrecomputation
;
...
...
Common/3dParty/cryptopp/eccrypto.h
View file @
16bdbafa
...
@@ -356,20 +356,20 @@ NAMESPACE_END
...
@@ -356,20 +356,20 @@ NAMESPACE_END
NAMESPACE_BEGIN
(
CryptoPP
)
NAMESPACE_BEGIN
(
CryptoPP
)
template
class
DL_GroupParameters_EC
<
ECP
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_GroupParameters_EC
<
ECP
>
;
template
class
DL_GroupParameters_EC
<
EC2N
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_GroupParameters_EC
<
EC2N
>
;
template
class
DL_PublicKeyImpl
<
DL_GroupParameters_EC
<
ECP
>
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PublicKeyImpl
<
DL_GroupParameters_EC
<
ECP
>
>
;
template
class
DL_PublicKeyImpl
<
DL_GroupParameters_EC
<
EC2N
>
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PublicKeyImpl
<
DL_GroupParameters_EC
<
EC2N
>
>
;
template
class
DL_PublicKey_EC
<
ECP
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PublicKey_EC
<
ECP
>
;
template
class
DL_PublicKey_EC
<
EC2N
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PublicKey_EC
<
EC2N
>
;
template
class
DL_PrivateKeyImpl
<
DL_GroupParameters_EC
<
ECP
>
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PrivateKeyImpl
<
DL_GroupParameters_EC
<
ECP
>
>
;
template
class
DL_PrivateKeyImpl
<
DL_GroupParameters_EC
<
EC2N
>
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PrivateKeyImpl
<
DL_GroupParameters_EC
<
EC2N
>
>
;
template
class
DL_PrivateKey_EC
<
ECP
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PrivateKey_EC
<
ECP
>
;
template
class
DL_PrivateKey_EC
<
EC2N
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PrivateKey_EC
<
EC2N
>
;
template
class
DL_Algorithm_GDSA
<
ECP
::
Point
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_Algorithm_GDSA
<
ECP
::
Point
>
;
template
class
DL_Algorithm_GDSA
<
EC2N
::
Point
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_Algorithm_GDSA
<
EC2N
::
Point
>
;
template
class
DL_PrivateKey_WithSignaturePairwiseConsistencyTest
<
DL_PrivateKey_EC
<
ECP
>,
ECDSA
<
ECP
,
SHA256
>
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PrivateKey_WithSignaturePairwiseConsistencyTest
<
DL_PrivateKey_EC
<
ECP
>
,
ECDSA
<
ECP
,
SHA256
>
>
;
template
class
DL_PrivateKey_WithSignaturePairwiseConsistencyTest
<
DL_PrivateKey_EC
<
EC2N
>,
ECDSA
<
EC2N
,
SHA256
>
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PrivateKey_WithSignaturePairwiseConsistencyTest
<
DL_PrivateKey_EC
<
EC2N
>
,
ECDSA
<
EC2N
,
SHA256
>
>
;
NAMESPACE_END
NAMESPACE_END
...
...
Common/3dParty/cryptopp/ecp.h
View file @
16bdbafa
...
@@ -36,7 +36,7 @@ struct CRYPTOPP_DLL ECPPoint
...
@@ -36,7 +36,7 @@ struct CRYPTOPP_DLL ECPPoint
Integer
x
,
y
;
Integer
x
,
y
;
};
};
template
class
AbstractGroup
<
ECPPoint
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
AbstractGroup
<
ECPPoint
>
;
//! Elliptic Curve over GF(p), where p is prime
//! Elliptic Curve over GF(p), where p is prime
class
CRYPTOPP_DLL
ECP
:
public
AbstractGroup
<
ECPPoint
>
class
CRYPTOPP_DLL
ECP
:
public
AbstractGroup
<
ECPPoint
>
...
@@ -104,8 +104,8 @@ private:
...
@@ -104,8 +104,8 @@ private:
mutable
Point
m_R
;
mutable
Point
m_R
;
};
};
template
class
DL_FixedBasePrecomputationImpl
<
ECP
::
Point
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_FixedBasePrecomputationImpl
<
ECP
::
Point
>
;
template
class
DL_GroupPrecomputation
<
ECP
::
Point
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_GroupPrecomputation
<
ECP
::
Point
>
;
template
<
class
T
>
class
EcPrecomputation
;
template
<
class
T
>
class
EcPrecomputation
;
...
...
Common/3dParty/cryptopp/filters.h
View file @
16bdbafa
...
@@ -996,7 +996,12 @@ private:
...
@@ -996,7 +996,12 @@ private:
T
*
m_output
;
T
*
m_output
;
};
};
//template class StringSinkTemplate<std::string>;
#ifdef _IOS
template
class
StringSinkTemplate
<
std
::
string
>;
#else
CRYPTOPP_DLL_TEMPLATE_CLASS
StringSinkTemplate
<
std
::
string
>
;
#endif
DOCUMENTED_TYPEDEF
(
StringSinkTemplate
<
std
::
string
>
,
StringSink
);
DOCUMENTED_TYPEDEF
(
StringSinkTemplate
<
std
::
string
>
,
StringSink
);
//! \class RandomNumberSink
//! \class RandomNumberSink
...
...
Common/3dParty/cryptopp/gf2n.h
View file @
16bdbafa
...
@@ -272,11 +272,11 @@ inline CryptoPP::PolynomialMod2 operator%(const CryptoPP::PolynomialMod2 &a, con
...
@@ -272,11 +272,11 @@ inline CryptoPP::PolynomialMod2 operator%(const CryptoPP::PolynomialMod2 &a, con
// CodeWarrior 8 workaround: put these template instantiations after overloaded operator declarations,
// CodeWarrior 8 workaround: put these template instantiations after overloaded operator declarations,
// but before the use of QuotientRing<EuclideanDomainOf<PolynomialMod2> > for VC .NET 2003
// but before the use of QuotientRing<EuclideanDomainOf<PolynomialMod2> > for VC .NET 2003
template
class
AbstractGroup
<
PolynomialMod2
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
AbstractGroup
<
PolynomialMod2
>
;
template
class
AbstractRing
<
PolynomialMod2
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
AbstractRing
<
PolynomialMod2
>
;
template
class
AbstractEuclideanDomain
<
PolynomialMod2
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
AbstractEuclideanDomain
<
PolynomialMod2
>
;
template
class
EuclideanDomainOf
<
PolynomialMod2
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
EuclideanDomainOf
<
PolynomialMod2
>
;
template
class
QuotientRing
<
EuclideanDomainOf
<
PolynomialMod2
>
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
QuotientRing
<
EuclideanDomainOf
<
PolynomialMod2
>
>
;
//! GF(2^n) with Polynomial Basis
//! GF(2^n) with Polynomial Basis
class
CRYPTOPP_DLL
GF2NP
:
public
QuotientRing
<
EuclideanDomainOf
<
PolynomialMod2
>
>
class
CRYPTOPP_DLL
GF2NP
:
public
QuotientRing
<
EuclideanDomainOf
<
PolynomialMod2
>
>
...
...
Common/3dParty/cryptopp/gfpcrypt.h
View file @
16bdbafa
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
NAMESPACE_BEGIN
(
CryptoPP
)
NAMESPACE_BEGIN
(
CryptoPP
)
//template class
DL_GroupParameters<Integer>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_GroupParameters
<
Integer
>
;
//! _
//! _
class
CRYPTOPP_DLL
CRYPTOPP_NO_VTABLE
DL_GroupParameters_IntegerBased
:
public
ASN1CryptoMaterial
<
DL_GroupParameters
<
Integer
>
>
class
CRYPTOPP_DLL
CRYPTOPP_NO_VTABLE
DL_GroupParameters_IntegerBased
:
public
ASN1CryptoMaterial
<
DL_GroupParameters
<
Integer
>
>
...
@@ -138,7 +138,7 @@ public:
...
@@ -138,7 +138,7 @@ public:
#endif
#endif
};
};
//template class
DL_GroupParameters_IntegerBasedImpl<ModExpPrecomputation>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_GroupParameters_IntegerBasedImpl
<
ModExpPrecomputation
>
;
//! GF(p) group parameters
//! GF(p) group parameters
class
CRYPTOPP_DLL
DL_GroupParameters_GFP
:
public
DL_GroupParameters_IntegerBasedImpl
<
ModExpPrecomputation
>
class
CRYPTOPP_DLL
DL_GroupParameters_GFP
:
public
DL_GroupParameters_IntegerBasedImpl
<
ModExpPrecomputation
>
...
@@ -214,7 +214,7 @@ public:
...
@@ -214,7 +214,7 @@ public:
#endif
#endif
};
};
//template class
DL_Algorithm_GDSA<Integer>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_Algorithm_GDSA
<
Integer
>
;
//! NR algorithm
//! NR algorithm
template
<
class
T
>
template
<
class
T
>
...
@@ -490,9 +490,9 @@ public:
...
@@ -490,9 +490,9 @@ public:
//! DSA with SHA-1, typedef'd for backwards compatibility
//! DSA with SHA-1, typedef'd for backwards compatibility
typedef
DSA2
<
SHA
>
DSA
;
typedef
DSA2
<
SHA
>
DSA
;
//template class
DL_PublicKey_GFP<DL_GroupParameters_DSA>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PublicKey_GFP
<
DL_GroupParameters_DSA
>
;
//template class
DL_PrivateKey_GFP<DL_GroupParameters_DSA>;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PrivateKey_GFP
<
DL_GroupParameters_DSA
>
;
//template class
DL_PrivateKey_WithSignaturePairwiseConsistencyTest<DL_PrivateKey_GFP<DL_GroupParameters_DSA>, DSA2<SHA> >;
CRYPTOPP_DLL_TEMPLATE_CLASS
DL_PrivateKey_WithSignaturePairwiseConsistencyTest
<
DL_PrivateKey_GFP
<
DL_GroupParameters_DSA
>
,
DSA2
<
SHA
>
>
;
//! the XOR encryption method, for use with DL-based cryptosystems
//! the XOR encryption method, for use with DL-based cryptosystems
template
<
class
MAC
,
bool
DHAES_MODE
>
template
<
class
MAC
,
bool
DHAES_MODE
>
...
...
Common/3dParty/cryptopp/iterhash.h
View file @
16bdbafa
...
@@ -175,11 +175,11 @@ protected:
...
@@ -175,11 +175,11 @@ protected:
};
};
#ifndef __GNUC__
#ifndef __GNUC__
//
CRYPTOPP_DLL_TEMPLATE_CLASS IteratedHashBase<word64, HashTransformation>;
CRYPTOPP_DLL_TEMPLATE_CLASS
IteratedHashBase
<
word64
,
HashTransformation
>
;
//
CRYPTOPP_STATIC_TEMPLATE_CLASS IteratedHashBase<word64, MessageAuthenticationCode>;
CRYPTOPP_STATIC_TEMPLATE_CLASS
IteratedHashBase
<
word64
,
MessageAuthenticationCode
>
;
//
//
CRYPTOPP_DLL_TEMPLATE_CLASS IteratedHashBase<word32, HashTransformation>;
CRYPTOPP_DLL_TEMPLATE_CLASS
IteratedHashBase
<
word32
,
HashTransformation
>
;
//
CRYPTOPP_STATIC_TEMPLATE_CLASS IteratedHashBase<word32, MessageAuthenticationCode>;
CRYPTOPP_STATIC_TEMPLATE_CLASS
IteratedHashBase
<
word32
,
MessageAuthenticationCode
>
;
#endif
#endif
NAMESPACE_END
NAMESPACE_END
...
...
Common/3dParty/cryptopp/modarith.h
View file @
16bdbafa
...
@@ -16,9 +16,15 @@
...
@@ -16,9 +16,15 @@
NAMESPACE_BEGIN
(
CryptoPP
)
NAMESPACE_BEGIN
(
CryptoPP
)
template
class
AbstractGroup
<
Integer
>;
#ifdef _IOS
template
class
AbstractRing
<
Integer
>;
template
class
AbstractGroup
<
Integer
>;
template
class
AbstractEuclideanDomain
<
Integer
>;
template
class
AbstractRing
<
Integer
>;
template
class
AbstractEuclideanDomain
<
Integer
>;
#else
CRYPTOPP_DLL_TEMPLATE_CLASS
AbstractGroup
<
Integer
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
AbstractRing
<
Integer
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
AbstractEuclideanDomain
<
Integer
>
;
#endif
//! \class ModularArithmetic
//! \class ModularArithmetic
//! \brief Ring of congruence classes modulo n
//! \brief Ring of congruence classes modulo n
...
...
Common/3dParty/cryptopp/modes.h
View file @
16bdbafa
...
@@ -336,13 +336,11 @@ public:
...
@@ -336,13 +336,11 @@ public:
std
::
string
AlgorithmName
()
const
std
::
string
AlgorithmName
()
const
{
return
(
this
->
m_cipher
?
this
->
m_cipher
->
AlgorithmName
()
+
"/"
:
std
::
string
(
""
))
+
BASE
::
StaticAlgorithmName
();}
{
return
(
this
->
m_cipher
?
this
->
m_cipher
->
AlgorithmName
()
+
"/"
:
std
::
string
(
""
))
+
BASE
::
StaticAlgorithmName
();}
virtual
void
CombineMessageAndShiftRegister
(
byte
*
output
,
byte
*
reg
,
const
byte
*
message
,
size_t
length
)
{}
};
};
//template class
CFB_CipherTemplate<AbstractPolicyHolder<CFB_CipherAbstractPolicy, CFB_ModePolicy> >;
CRYPTOPP_DLL_TEMPLATE_CLASS
CFB_CipherTemplate
<
AbstractPolicyHolder
<
CFB_CipherAbstractPolicy
,
CFB_ModePolicy
>
>
;
//template class
CFB_EncryptionTemplate<AbstractPolicyHolder<CFB_CipherAbstractPolicy, CFB_ModePolicy> >;
CRYPTOPP_DLL_TEMPLATE_CLASS
CFB_EncryptionTemplate
<
AbstractPolicyHolder
<
CFB_CipherAbstractPolicy
,
CFB_ModePolicy
>
>
;
//template class
CFB_DecryptionTemplate<AbstractPolicyHolder<CFB_CipherAbstractPolicy, CFB_ModePolicy> >;
CRYPTOPP_DLL_TEMPLATE_CLASS
CFB_DecryptionTemplate
<
AbstractPolicyHolder
<
CFB_CipherAbstractPolicy
,
CFB_ModePolicy
>
>
;
//! \class CFB_Mode
//! \class CFB_Mode
//! \brief CFB block cipher mode of operation.
//! \brief CFB block cipher mode of operation.
...
@@ -380,7 +378,7 @@ struct CFB_FIPS_Mode_ExternalCipher : public CipherModeDocumentation
...
@@ -380,7 +378,7 @@ struct CFB_FIPS_Mode_ExternalCipher : public CipherModeDocumentation
typedef
CipherModeFinalTemplate_ExternalCipher
<
ConcretePolicyHolder
<
Empty
,
CFB_RequireFullDataBlocks
<
CFB_DecryptionTemplate
<
AbstractPolicyHolder
<
CFB_CipherAbstractPolicy
,
CFB_ModePolicy
>
>
>
>
>
Decryption
;
typedef
CipherModeFinalTemplate_ExternalCipher
<
ConcretePolicyHolder
<
Empty
,
CFB_RequireFullDataBlocks
<
CFB_DecryptionTemplate
<
AbstractPolicyHolder
<
CFB_CipherAbstractPolicy
,
CFB_ModePolicy
>
>
>
>
>
Decryption
;
};
};
//
CRYPTOPP_DLL_TEMPLATE_CLASS AdditiveCipherTemplate<AbstractPolicyHolder<AdditiveCipherAbstractPolicy, OFB_ModePolicy> >;
CRYPTOPP_DLL_TEMPLATE_CLASS
AdditiveCipherTemplate
<
AbstractPolicyHolder
<
AdditiveCipherAbstractPolicy
,
OFB_ModePolicy
>
>
;
//! \class OFB_Mode
//! \class OFB_Mode
//! \brief OFB block cipher mode of operation.
//! \brief OFB block cipher mode of operation.
...
@@ -399,8 +397,8 @@ struct OFB_Mode_ExternalCipher : public CipherModeDocumentation
...
@@ -399,8 +397,8 @@ struct OFB_Mode_ExternalCipher : public CipherModeDocumentation
typedef
Encryption
Decryption
;
typedef
Encryption
Decryption
;
};
};
//
CRYPTOPP_DLL_TEMPLATE_CLASS AdditiveCipherTemplate<AbstractPolicyHolder<AdditiveCipherAbstractPolicy, CTR_ModePolicy> >;
CRYPTOPP_DLL_TEMPLATE_CLASS
AdditiveCipherTemplate
<
AbstractPolicyHolder
<
AdditiveCipherAbstractPolicy
,
CTR_ModePolicy
>
>
;
//
CRYPTOPP_DLL_TEMPLATE_CLASS CipherModeFinalTemplate_ExternalCipher<ConcretePolicyHolder<Empty, AdditiveCipherTemplate<AbstractPolicyHolder<AdditiveCipherAbstractPolicy, CTR_ModePolicy> > > >;
CRYPTOPP_DLL_TEMPLATE_CLASS
CipherModeFinalTemplate_ExternalCipher
<
ConcretePolicyHolder
<
Empty
,
AdditiveCipherTemplate
<
AbstractPolicyHolder
<
AdditiveCipherAbstractPolicy
,
CTR_ModePolicy
>
>
>
>
;
//! \class CTR_Mode
//! \class CTR_Mode
//! \brief CTR block cipher mode of operation.
//! \brief CTR block cipher mode of operation.
...
@@ -428,7 +426,11 @@ struct ECB_Mode : public CipherModeDocumentation
...
@@ -428,7 +426,11 @@ struct ECB_Mode : public CipherModeDocumentation
typedef
CipherModeFinalTemplate_CipherHolder
<
CPP_TYPENAME
CIPHER
::
Decryption
,
ECB_OneWay
>
Decryption
;
typedef
CipherModeFinalTemplate_CipherHolder
<
CPP_TYPENAME
CIPHER
::
Decryption
,
ECB_OneWay
>
Decryption
;
};
};
//template class CipherModeFinalTemplate_ExternalCipher<ECB_OneWay>;
#ifdef _IOS
template
class
CipherModeFinalTemplate_ExternalCipher
<
ECB_OneWay
>;
#else
CRYPTOPP_DLL_TEMPLATE_CLASS
CipherModeFinalTemplate_ExternalCipher
<
ECB_OneWay
>
;
#endif
//! \class ECB_Mode_ExternalCipher
//! \class ECB_Mode_ExternalCipher
//! \brief ECB mode, external cipher.
//! \brief ECB mode, external cipher.
...
@@ -446,8 +448,13 @@ struct CBC_Mode : public CipherModeDocumentation
...
@@ -446,8 +448,13 @@ struct CBC_Mode : public CipherModeDocumentation
typedef
CipherModeFinalTemplate_CipherHolder
<
CPP_TYPENAME
CIPHER
::
Decryption
,
CBC_Decryption
>
Decryption
;
typedef
CipherModeFinalTemplate_CipherHolder
<
CPP_TYPENAME
CIPHER
::
Decryption
,
CBC_Decryption
>
Decryption
;
};
};
//template class CipherModeFinalTemplate_ExternalCipher<CBC_Encryption>;
#ifdef _IOS
//template class CipherModeFinalTemplate_ExternalCipher<CBC_Decryption>;
template
class
CipherModeFinalTemplate_ExternalCipher
<
CBC_Encryption
>;
template
class
CipherModeFinalTemplate_ExternalCipher
<
CBC_Decryption
>;
#else
CRYPTOPP_DLL_TEMPLATE_CLASS
CipherModeFinalTemplate_ExternalCipher
<
CBC_Encryption
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
CipherModeFinalTemplate_ExternalCipher
<
CBC_Decryption
>
;
#endif
//! CBC mode, external cipher
//! CBC mode, external cipher
struct
CBC_Mode_ExternalCipher
:
public
CipherModeDocumentation
struct
CBC_Mode_ExternalCipher
:
public
CipherModeDocumentation
...
@@ -464,8 +471,8 @@ struct CBC_CTS_Mode : public CipherModeDocumentation
...
@@ -464,8 +471,8 @@ struct CBC_CTS_Mode : public CipherModeDocumentation
typedef
CipherModeFinalTemplate_CipherHolder
<
CPP_TYPENAME
CIPHER
::
Decryption
,
CBC_CTS_Decryption
>
Decryption
;
typedef
CipherModeFinalTemplate_CipherHolder
<
CPP_TYPENAME
CIPHER
::
Decryption
,
CBC_CTS_Decryption
>
Decryption
;
};
};
template
class
CipherModeFinalTemplate_ExternalCipher
<
CBC_CTS_Encryption
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
CipherModeFinalTemplate_ExternalCipher
<
CBC_CTS_Encryption
>
;
template
class
CipherModeFinalTemplate_ExternalCipher
<
CBC_CTS_Decryption
>;
CRYPTOPP_DLL_TEMPLATE_CLASS
CipherModeFinalTemplate_ExternalCipher
<
CBC_CTS_Decryption
>
;
//! \class CBC_CTS_Mode_ExternalCipher
//! \class CBC_CTS_Mode_ExternalCipher
//! \brief CBC mode with ciphertext stealing, external cipher
//! \brief CBC mode with ciphertext stealing, external cipher
...
...
Common/3dParty/cryptopp/osrng.h
View file @
16bdbafa
...
@@ -242,7 +242,7 @@ void AutoSeededX917RNG<BLOCK_CIPHER>::Reseed(bool blocking, const byte *input, s
...
@@ -242,7 +242,7 @@ void AutoSeededX917RNG<BLOCK_CIPHER>::Reseed(bool blocking, const byte *input, s
Reseed
(
key
,
BLOCK_CIPHER
::
DEFAULT_KEYLENGTH
,
seed
,
NULL
);
Reseed
(
key
,
BLOCK_CIPHER
::
DEFAULT_KEYLENGTH
,
seed
,
NULL
);
}
}
//
CRYPTOPP_DLL_TEMPLATE_CLASS AutoSeededX917RNG<AES>;
CRYPTOPP_DLL_TEMPLATE_CLASS
AutoSeededX917RNG
<
AES
>
;
#if defined(CRYPTOPP_DOXYGEN_PROCESSING)
#if defined(CRYPTOPP_DOXYGEN_PROCESSING)
//! \class DefaultAutoSeededRNG
//! \class DefaultAutoSeededRNG
...
...
Common/3dParty/cryptopp/secblock.h
View file @
16bdbafa
...
@@ -240,15 +240,23 @@ public:
...
@@ -240,15 +240,23 @@ public:
#endif
#endif
};
};
template
class
AllocatorWithCleanup
<
byte
>;
#ifdef _IOS
template
class
AllocatorWithCleanup
<
word16
>;
template
class
AllocatorWithCleanup
<
byte
>;
template
class
AllocatorWithCleanup
<
word32
>;
template
class
AllocatorWithCleanup
<
word16
>;
template
class
AllocatorWithCleanup
<
word64
>;
template
class
AllocatorWithCleanup
<
word32
>;
template
class
AllocatorWithCleanup
<
word64
>;
#else
CRYPTOPP_DLL_TEMPLATE_CLASS
AllocatorWithCleanup
<
byte
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
AllocatorWithCleanup
<
word16
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
AllocatorWithCleanup
<
word32
>
;
CRYPTOPP_DLL_TEMPLATE_CLASS
AllocatorWithCleanup
<
word64
>
;
#endif
#if defined(CRYPTOPP_WORD128_AVAILABLE)
#if defined(CRYPTOPP_WORD128_AVAILABLE)
template
class
AllocatorWithCleanup
<
word128
,
true
>;
// for Integer
CRYPTOPP_DLL_TEMPLATE_CLASS
AllocatorWithCleanup
<
word128
,
true
>
;
// for Integer
#endif
#endif
#if CRYPTOPP_BOOL_X86
#if CRYPTOPP_BOOL_X86
template
class
AllocatorWithCleanup
<
word
,
true
>;
// for Integer
CRYPTOPP_DLL_TEMPLATE_CLASS
AllocatorWithCleanup
<
word
,
true
>
;
// for Integer
#endif
#endif
//! \class NullAllocator
//! \class NullAllocator
...
...
Common/3dParty/cryptopp/strciphr.h
View file @
16bdbafa
...
@@ -552,7 +552,7 @@ template <class BASE = AbstractPolicyHolder<CFB_CipherAbstractPolicy, SymmetricC
...
@@ -552,7 +552,7 @@ template <class BASE = AbstractPolicyHolder<CFB_CipherAbstractPolicy, SymmetricC
class
CRYPTOPP_NO_VTABLE
CFB_EncryptionTemplate
:
public
CFB_CipherTemplate
<
BASE
>
class
CRYPTOPP_NO_VTABLE
CFB_EncryptionTemplate
:
public
CFB_CipherTemplate
<
BASE
>
{
{
bool
IsForwardTransformation
()
const
{
return
true
;}
bool
IsForwardTransformation
()
const
{
return
true
;}
v
irtual
v
oid
CombineMessageAndShiftRegister
(
byte
*
output
,
byte
*
reg
,
const
byte
*
message
,
size_t
length
);
void
CombineMessageAndShiftRegister
(
byte
*
output
,
byte
*
reg
,
const
byte
*
message
,
size_t
length
);
};
};
//! \class CFB_DecryptionTemplate
//! \class CFB_DecryptionTemplate
...
@@ -562,7 +562,7 @@ template <class BASE = AbstractPolicyHolder<CFB_CipherAbstractPolicy, SymmetricC
...
@@ -562,7 +562,7 @@ template <class BASE = AbstractPolicyHolder<CFB_CipherAbstractPolicy, SymmetricC
class
CRYPTOPP_NO_VTABLE
CFB_DecryptionTemplate
:
public
CFB_CipherTemplate
<
BASE
>
class
CRYPTOPP_NO_VTABLE
CFB_DecryptionTemplate
:
public
CFB_CipherTemplate
<
BASE
>
{
{
bool
IsForwardTransformation
()
const
{
return
false
;}
bool
IsForwardTransformation
()
const
{
return
false
;}
v
irtual
v
oid
CombineMessageAndShiftRegister
(
byte
*
output
,
byte
*
reg
,
const
byte
*
message
,
size_t
length
);
void
CombineMessageAndShiftRegister
(
byte
*
output
,
byte
*
reg
,
const
byte
*
message
,
size_t
length
);
};
};
//! \class CFB_RequireFullDataBlocks
//! \class CFB_RequireFullDataBlocks
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment