You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by sm...@apache.org on 2006/04/05 08:14:24 UTC

svn commit: r391530 - /incubator/harmony/enhanced/classlib/trunk/modules/crypto/src/main/java/javax/crypto/CipherSpi.java

Author: smishura
Date: Tue Apr  4 23:14:22 2006
New Revision: 391530

URL: http://svn.apache.org/viewcvs?rev=391530&view=rev
Log:
Typo fixed

Modified:
    incubator/harmony/enhanced/classlib/trunk/modules/crypto/src/main/java/javax/crypto/CipherSpi.java

Modified: incubator/harmony/enhanced/classlib/trunk/modules/crypto/src/main/java/javax/crypto/CipherSpi.java
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/crypto/src/main/java/javax/crypto/CipherSpi.java?rev=391530&r1=391529&r2=391530&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/crypto/src/main/java/javax/crypto/CipherSpi.java (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/crypto/src/main/java/javax/crypto/CipherSpi.java Tue Apr  4 23:14:22 2006
@@ -233,7 +233,7 @@
     protected byte[] engineWrap(Key key) throws IllegalBlockSizeException,
             InvalidKeyException {
         throw new UnsupportedOperationException(
-                "engineWrap(Key key) is not suppoerted");
+                "engineWrap(Key key) is not supported");
     }
 
     /**
@@ -244,7 +244,7 @@
             int wrappedKeyType) throws InvalidKeyException,
             NoSuchAlgorithmException {
         throw new UnsupportedOperationException(
-                "engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType) is not suppoerted");
+                "engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType) is not supported");
     }
 
     /**
@@ -253,6 +253,6 @@
      */
     protected int engineGetKeySize(Key key) throws InvalidKeyException {
         throw new UnsupportedOperationException(
-                "engineGetKeySize(Key key) is not suppoerted");
+                "engineGetKeySize(Key key) is not supported");
     }
 }