You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2016/06/30 16:04:48 UTC

commons-crypto git commit: [CRYPTO-94] Consistently camel-case type names: Cbc*.

Repository: commons-crypto
Updated Branches:
  refs/heads/master ba14d8019 -> 4f356a7e4


[CRYPTO-94] Consistently camel-case type names: Cbc*.

Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/4f356a7e
Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/4f356a7e
Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/4f356a7e

Branch: refs/heads/master
Commit: 4f356a7e477d258b7574aa5f2971c96a5b3cc012
Parents: ba14d80
Author: Gary Gregory <gg...@apache.org>
Authored: Thu Jun 30 09:04:44 2016 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Thu Jun 30 09:04:44 2016 -0700

----------------------------------------------------------------------
 .../stream/CBCNoPaddingCipherStreamTest.java    | 29 --------------------
 .../stream/CBCPKCS5PaddingCipherStreamTest.java | 28 -------------------
 .../stream/CbcNoPaddingCipherStreamTest.java    | 29 ++++++++++++++++++++
 .../stream/CbcPkcs5PaddingCipherStreamTest.java | 28 +++++++++++++++++++
 4 files changed, 57 insertions(+), 57 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/4f356a7e/src/test/java/org/apache/commons/crypto/stream/CBCNoPaddingCipherStreamTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/crypto/stream/CBCNoPaddingCipherStreamTest.java b/src/test/java/org/apache/commons/crypto/stream/CBCNoPaddingCipherStreamTest.java
deleted file mode 100644
index 4fb21b6..0000000
--- a/src/test/java/org/apache/commons/crypto/stream/CBCNoPaddingCipherStreamTest.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.commons.crypto.stream;
-
-import java.io.IOException;
-
-public class CBCNoPaddingCipherStreamTest extends AbstractCipherStreamTest {
-
-    @Override
-    public void setUp() throws IOException {
-        transformation = "AES/CBC/NoPadding";
-    }
-
-}

http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/4f356a7e/src/test/java/org/apache/commons/crypto/stream/CBCPKCS5PaddingCipherStreamTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/crypto/stream/CBCPKCS5PaddingCipherStreamTest.java b/src/test/java/org/apache/commons/crypto/stream/CBCPKCS5PaddingCipherStreamTest.java
deleted file mode 100644
index 99cd31f..0000000
--- a/src/test/java/org/apache/commons/crypto/stream/CBCPKCS5PaddingCipherStreamTest.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.commons.crypto.stream;
-
-import java.io.IOException;
-
-public class CBCPKCS5PaddingCipherStreamTest extends AbstractCipherStreamTest {
-
-    @Override
-    public void setUp() throws IOException {
-        transformation = "AES/CBC/PKCS5Padding";
-    }
-}

http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/4f356a7e/src/test/java/org/apache/commons/crypto/stream/CbcNoPaddingCipherStreamTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/crypto/stream/CbcNoPaddingCipherStreamTest.java b/src/test/java/org/apache/commons/crypto/stream/CbcNoPaddingCipherStreamTest.java
new file mode 100644
index 0000000..d5a0de7
--- /dev/null
+++ b/src/test/java/org/apache/commons/crypto/stream/CbcNoPaddingCipherStreamTest.java
@@ -0,0 +1,29 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.commons.crypto.stream;
+
+import java.io.IOException;
+
+public class CbcNoPaddingCipherStreamTest extends AbstractCipherStreamTest {
+
+    @Override
+    public void setUp() throws IOException {
+        transformation = "AES/CBC/NoPadding";
+    }
+
+}

http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/4f356a7e/src/test/java/org/apache/commons/crypto/stream/CbcPkcs5PaddingCipherStreamTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/crypto/stream/CbcPkcs5PaddingCipherStreamTest.java b/src/test/java/org/apache/commons/crypto/stream/CbcPkcs5PaddingCipherStreamTest.java
new file mode 100644
index 0000000..ebe3f60
--- /dev/null
+++ b/src/test/java/org/apache/commons/crypto/stream/CbcPkcs5PaddingCipherStreamTest.java
@@ -0,0 +1,28 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.commons.crypto.stream;
+
+import java.io.IOException;
+
+public class CbcPkcs5PaddingCipherStreamTest extends AbstractCipherStreamTest {
+
+    @Override
+    public void setUp() throws IOException {
+        transformation = "AES/CBC/PKCS5Padding";
+    }
+}