summaryrefslogtreecommitdiff
path: root/filters.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-02-06 03:53:25 -0500
committerGitHub <noreply@github.com>2017-02-06 03:53:25 -0500
commit061f272da3e6174d49f192821b7ff40e03ea5127 (patch)
treee52789deeb71ee7a24385d9af099c8afb604b9f2 /filters.h
parentb8adc91ce888b94505f383101ed3a2b06e4a70a2 (diff)
parent46a9323d19632f74d0d091b689ae3f12c3209615 (diff)
downloadcryptopp-git-061f272da3e6174d49f192821b7ff40e03ea5127.tar.gz
Merge pull request #368 from edrlab/aes256cbc-w3c-padding-scheme
Support for AES-256-CBC with W3C padding scheme ( http://www.w3.org/2001/04/xmlenc#aes256-cbc )
Diffstat (limited to 'filters.h')
-rw-r--r--filters.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/filters.h b/filters.h
index 574e27a9..8851dfdb 100644
--- a/filters.h
+++ b/filters.h
@@ -480,6 +480,8 @@ struct BlockPaddingSchemeDef
PKCS_PADDING,
//! \brief 1 and 0's padding added to a block
ONE_AND_ZEROS_PADDING,
+ //! \brief [Random bytes (0 ~ N-2) and padding's length (N-1)]'s padding to a block
+ W3C_PADDING,
//! \brief Default padding scheme
DEFAULT_PADDING
};