Uses of Interface
org.apache.shiro.util.ByteSource

Packages that use ByteSource
org.apache.shiro.crypto Cryptography Cipher and Hashing components that greatly simplify the JDK's cryptography concepts and add additional convenient behavior. 
org.apache.shiro.util Your run-of-the-mill 'util' pacakge for components and logic widely used across the framework that can't find their home into a proper OO hierarchy (or, most likely for things used across many hierarchies). 
 

Uses of ByteSource in org.apache.shiro.crypto
 

Methods in org.apache.shiro.crypto that return ByteSource
 ByteSource JcaCipherService.decrypt(byte[] ciphertext, byte[] key)
           
 ByteSource CipherService.decrypt(byte[] encrypted, byte[] decryptionKey)
          Decrypts encrypted data via the specified cipher key and returns the original (pre-encrypted) data.
 ByteSource JcaCipherService.encrypt(byte[] plaintext, byte[] key)
           
 ByteSource CipherService.encrypt(byte[] raw, byte[] encryptionKey)
          Encrypts data via the specified cipher key.
 

Uses of ByteSource in org.apache.shiro.util
 

Classes in org.apache.shiro.util that implement ByteSource
 class SimpleByteSource
          Very simple ByteSource implementation that maintains an internal byte[] array and uses the Hex and Base64 codec classes to support the toHex() and toBase64() implementations.
 



Copyright © 2004-2010 The Apache Software Foundation. All Rights Reserved.