aboutsummaryrefslogtreecommitdiff
path: root/gnu/testlet/gnu/javax/crypto/pad/TestOfPKCS7.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/testlet/gnu/javax/crypto/pad/TestOfPKCS7.java')
-rw-r--r--gnu/testlet/gnu/javax/crypto/pad/TestOfPKCS7.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/gnu/testlet/gnu/javax/crypto/pad/TestOfPKCS7.java b/gnu/testlet/gnu/javax/crypto/pad/TestOfPKCS7.java
new file mode 100644
index 00000000..b620f26f
--- /dev/null
+++ b/gnu/testlet/gnu/javax/crypto/pad/TestOfPKCS7.java
@@ -0,0 +1,50 @@
+/* TestOfPKCS7.java --
+ Copyright (C) 2006 Free Software Foundation, Inc.
+ This file is part of Mauve.
+
+ Mauve is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ Mauve is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Mauve; see the file COPYING. If not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ 02110-1301 USA.
+
+ */
+
+// Tags: GNU-CRYPTO JDK1.4
+
+package gnu.testlet.gnu.javax.crypto.pad;
+
+import gnu.javax.crypto.pad.IPad;
+import gnu.javax.crypto.pad.PadFactory;
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+/**
+ * Conformance tests for the PKCS7 implementation.
+ */
+public class TestOfPKCS7 implements Testlet
+{
+ public void test(TestHarness harness)
+ {
+ harness.checkPoint("TestOfPKCS7");
+ try
+ {
+ IPad algorithm = PadFactory.getInstance("pkcs7");
+ harness.check(algorithm.selfTest(), "selfTest");
+ }
+ catch (Exception x)
+ {
+ harness.debug(x);
+ harness.fail("TestOfPKCS7.selfTest");
+ }
+ }
+} \ No newline at end of file