]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: Drop #warning TODO 17012/head
authorJos Collin <jcollin@redhat.com>
Mon, 14 Aug 2017 06:02:55 +0000 (11:32 +0530)
committerJos Collin <jcollin@redhat.com>
Mon, 14 Aug 2017 06:03:02 +0000 (11:33 +0530)
Drop "#warning TODO" from rgw_crypt.cc,  as the tracker is created for this requirement and the
corresponding PR is in progress for a long time.

Tracker: http://tracker.ceph.com/issues/19851
PR: https://github.com/ceph/ceph/pull/14498

Signed-off-by: Jos Collin <jcollin@redhat.com>
src/rgw/rgw_crypt.cc

index 88abd3b833d687c782b5f3c45073842d91f12b17..e5e0b8cb265d9a380ae8fac3ecd2079ba5f680b9 100644 (file)
@@ -35,8 +35,6 @@ using namespace rgw;
 /**
  * Encryption in CTR mode. offset is used as IV for each block.
  */
-#warning "TODO: move this code to auth/Crypto for others to reuse."
-
 class AES_256_CTR : public BlockCrypt {
 public:
   static const size_t AES_256_KEYSIZE = 256 / 8;
@@ -244,7 +242,6 @@ CryptoAccelRef get_crypto_accel(CephContext *cct)
  * 6. (Special case) If m == 0 then last n bytes are xor-ed with pattern
  *    obtained by CBC ENCRYPTION of {0} with IV derived from offset
  */
-#warning "TODO: use auth/Crypto instead of reimplementing."
 class AES_256_CBC : public BlockCrypt {
 public:
   static const size_t AES_256_KEYSIZE = 256 / 8;