Update documentation
parent
c415a64a0e
commit
cd395c7943
12
cham.h
12
cham.h
|
|
@ -95,7 +95,7 @@ public:
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
/// \brief Encryption transformation
|
/// \brief Decryption transformation
|
||||||
/// \details Dec provides implementation for decryption transformation. All key and block
|
/// \details Dec provides implementation for decryption transformation. All key and block
|
||||||
/// sizes are supported.
|
/// sizes are supported.
|
||||||
/// \since Crypto++ 8.0
|
/// \since Crypto++ 8.0
|
||||||
|
|
@ -109,11 +109,15 @@ public:
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/// \brief CHAM64 encryption
|
||||||
typedef BlockCipherFinal<ENCRYPTION, Enc> Encryption;
|
typedef BlockCipherFinal<ENCRYPTION, Enc> Encryption;
|
||||||
|
/// \brief CHAM64 decryption
|
||||||
typedef BlockCipherFinal<DECRYPTION, Dec> Decryption;
|
typedef BlockCipherFinal<DECRYPTION, Dec> Decryption;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/// \brief CHAM64 encryption
|
||||||
typedef CHAM64::Encryption CHAM64Encryption;
|
typedef CHAM64::Encryption CHAM64Encryption;
|
||||||
|
/// \brief CHAM64 decryption
|
||||||
typedef CHAM64::Decryption CHAM64Decryption;
|
typedef CHAM64::Decryption CHAM64Decryption;
|
||||||
|
|
||||||
/// \brief CHAM 128-bit block cipher
|
/// \brief CHAM 128-bit block cipher
|
||||||
|
|
@ -154,7 +158,7 @@ public:
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
/// \brief Encryption transformation
|
/// \brief Decryption transformation
|
||||||
/// \details Dec provides implementation for decryption transformation. All key and block
|
/// \details Dec provides implementation for decryption transformation. All key and block
|
||||||
/// sizes are supported.
|
/// sizes are supported.
|
||||||
/// \since Crypto++ 8.0
|
/// \since Crypto++ 8.0
|
||||||
|
|
@ -168,11 +172,15 @@ public:
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/// \brief CHAM128 encryption
|
||||||
typedef BlockCipherFinal<ENCRYPTION, Enc> Encryption;
|
typedef BlockCipherFinal<ENCRYPTION, Enc> Encryption;
|
||||||
|
/// \brief CHAM128 decryption
|
||||||
typedef BlockCipherFinal<DECRYPTION, Dec> Decryption;
|
typedef BlockCipherFinal<DECRYPTION, Dec> Decryption;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/// \brief CHAM128 encryption
|
||||||
typedef CHAM128::Encryption CHAM128Encryption;
|
typedef CHAM128::Encryption CHAM128Encryption;
|
||||||
|
/// \brief CHAM128 decryption
|
||||||
typedef CHAM128::Decryption CHAM128Decryption;
|
typedef CHAM128::Decryption CHAM128Decryption;
|
||||||
|
|
||||||
NAMESPACE_END
|
NAMESPACE_END
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue