Java Doc for BlockCipherBase.java in  » 6.0-JDK-Modules » j2me » com » sun » midp » crypto » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » com.sun.midp.crypto 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.midp.crypto.Cipher
      com.sun.midp.crypto.BlockCipherBase

All known Subclasses:   com.sun.midp.crypto.DES_ECB,  com.sun.midp.crypto.AES_ECB,
BlockCipherBase
abstract class BlockCipherBase extends Cipher (Code)
Class providing common functionality for DES ciphers.


Field Summary
protected  byte[]IV
     Initial vector.
protected  intholdCount
     The holding buffer counter.
protected  byte[]holdData
     Contains the data that is not encrypted or decrypted yet.
protected  booleanisUpdated
     Indicates if this cipher object has been updated or not.
protected  intmode
     ENCRYPT or DECRYPT.
protected  Padderpadder
     The padder.

Constructor Summary
protected  BlockCipherBase(int blockSize)
     Constructor.

Method Summary
public  intdoFinal(byte in, int offset, int len, byte out, int outOffset)
     Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
protected  voiddoInit(int mode, String keyAlgorithm, Key key, boolean needIV, CryptoParameter params)
     Initializes a cipher object with the key and sets encryption or decryption mode.
public  byte[]getIV()
     Returns the initialization vector (IV) in a new buffer.
abstract  voidinitKey(byte[] data, int mode)
     Initializes key.
abstract  voidprocessBlock(byte[] out, int offset)
     Depending on the mode, either encrypts or decrypts data block.
protected  voidrestoreState()
     Restores cipher state.
protected  voidsaveState()
     Saves cipher state.
protected  voidsetPadding(String padding)
     Sets the padder.
public  intupdate(byte in, int offset, int len, byte out, int outOffset)
     Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.

Field Detail
IV
protected byte[] IV(Code)
Initial vector.



holdCount
protected int holdCount(Code)
The holding buffer counter.



holdData
protected byte[] holdData(Code)
Contains the data that is not encrypted or decrypted yet.



isUpdated
protected boolean isUpdated(Code)
Indicates if this cipher object has been updated or not.



mode
protected int mode(Code)
ENCRYPT or DECRYPT.



padder
protected Padder padder(Code)
The padder.




Constructor Detail
BlockCipherBase
protected BlockCipherBase(int blockSize)(Code)
Constructor.
Parameters:
  blockSize - block size




Method Detail
doFinal
public int doFinal(byte in, int offset, int len, byte out, int outOffset) throws IllegalStateException, IllegalBlockSizeException, ShortBufferException, BadPaddingException(Code)
Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation. The data is encrypted or decrypted, depending on how this cipher was initialized.
Parameters:
  in - the input buffer
Parameters:
  offset - the offset in input where the inputstarts
Parameters:
  len - the input length
Parameters:
  out - the buffer for the result
Parameters:
  outOffset - the offset in output where the resultis stored the number of bytes stored in output
exception:
  IllegalStateException - if this cipher is in a wrong state(e.g., has not been initialized)
exception:
  IllegalBlockSizeException - if this cipher is a block cipher,no padding has been requested (only in encryption mode), and the totalinput length of the data processed by this cipher is not a multiple ofblock size
exception:
  ShortBufferException - if the given output buffer is too smallto hold the result
exception:
  BadPaddingException - if this cipher is in decryption mode,and (un)padding has been requested, but the decrypted data is notbounded by the appropriate padding bytes



doInit
protected void doInit(int mode, String keyAlgorithm, Key key, boolean needIV, CryptoParameter params) throws InvalidKeyException, InvalidAlgorithmParameterException(Code)
Initializes a cipher object with the key and sets encryption or decryption mode.
Parameters:
  mode - either encryption or decription mode
Parameters:
  keyAlgorithm - algorithm the key should have
Parameters:
  key - key to be used
Parameters:
  needIV - true if this algorithm accepts IV parameter
Parameters:
  params - the algorithm parameters
exception:
  InvalidKeyException - if the given keyis inappropriate for initializing this cipher
exception:
  InvalidAlgorithmParameterException - if the given algorithm parameters are inappropriate for this cipher



getIV
public byte[] getIV()(Code)
Returns the initialization vector (IV) in a new buffer. This is useful in the case where a random IV was created. the initialization vector in a new buffer,or null if the underlying algorithm doesnot use an IV.



initKey
abstract void initKey(byte[] data, int mode) throws InvalidKeyException(Code)
Initializes key.
Parameters:
  data - key data
Parameters:
  mode - cipher mode
exception:
  InvalidKeyException - if the given key is inappropriatefor this cipher



processBlock
abstract void processBlock(byte[] out, int offset)(Code)
Depending on the mode, either encrypts or decrypts data block.
Parameters:
  out - will contain the result of encryptionor decryption operation
Parameters:
  offset - is the offset in out



restoreState
protected void restoreState()(Code)
Restores cipher state.



saveState
protected void saveState()(Code)
Saves cipher state.



setPadding
protected void setPadding(String padding) throws NoSuchPaddingException(Code)
Sets the padder.
Parameters:
  padding - Upper case padding arg from the transformation given toCipher.getInstance
exception:
  NoSuchPaddingException - if paddingcontains a padding scheme that is not available.



update
public int update(byte in, int offset, int len, byte out, int outOffset) throws IllegalStateException, ShortBufferException(Code)
Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
Parameters:
  in - the input buffer
Parameters:
  offset - the offset in input where the inputstarts
Parameters:
  len - the input length
Parameters:
  out - the buffer for the result
Parameters:
  outOffset - the offset in output where the resultis stored the number of bytes stored in output
exception:
  IllegalStateException - if this cipher is in a wrong state(e.g., has not been initialized)
exception:
  ShortBufferException - if the given output buffer is too smallto hold the result



Fields inherited from com.sun.midp.crypto.Cipher
final public static int DECRYPT_MODE(Code)(Java Doc)
final public static int ENCRYPT_MODE(Code)(Java Doc)
final protected static int MODE_UNINITIALIZED(Code)(Java Doc)

Methods inherited from com.sun.midp.crypto.Cipher
abstract public int doFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) throws IllegalStateException, ShortBufferException, IllegalBlockSizeException, BadPaddingException(Code)(Java Doc)
public byte[] getIV()(Code)(Java Doc)
final public static Cipher getInstance(String transformation) throws NoSuchAlgorithmException, NoSuchPaddingException(Code)(Java Doc)
public void init(int opmode, Key key) throws InvalidKeyException(Code)(Java Doc)
abstract public void init(int opmode, Key key, CryptoParameter params) throws InvalidKeyException, InvalidAlgorithmParameterException(Code)(Java Doc)
abstract protected void setChainingModeAndPadding(String mode, String padding) throws NoSuchPaddingException(Code)(Java Doc)
abstract public int update(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) throws IllegalStateException, ShortBufferException(Code)(Java Doc)

Methods inherited from java.lang.Object
public boolean equals(Object obj)(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.