org.jclouds.encryption.internal
Class JCECrypto
java.lang.Object
org.jclouds.encryption.internal.JCECrypto
- All Implemented Interfaces:
- Crypto
- Direct Known Subclasses:
- BouncyCastleCrypto
@Singleton
public class JCECrypto
- extends Object
- implements Crypto
- Author:
- Adrian Cole
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MD5
public static final String MD5
- See Also:
- Constant Field Values
SHA1
public static final String SHA1
- See Also:
- Constant Field Values
SHA256
public static final String SHA256
- See Also:
- Constant Field Values
SHA512
public static final String SHA512
- See Also:
- Constant Field Values
HmacSHA256
public static final String HmacSHA256
- See Also:
- Constant Field Values
HmacSHA1
public static final String HmacSHA1
- See Also:
- Constant Field Values
JCECrypto
@Inject
public JCECrypto()
throws NoSuchAlgorithmException,
CertificateException
- Throws:
NoSuchAlgorithmException
CertificateException
JCECrypto
public JCECrypto(@Nullable
Provider provider)
throws NoSuchAlgorithmException,
CertificateException
- Throws:
NoSuchAlgorithmException
CertificateException
hmac
public Mac hmac(String algorithm,
byte[] key)
throws NoSuchAlgorithmException,
InvalidKeyException
- Specified by:
hmac
in interface Crypto
- Throws:
NoSuchAlgorithmException
InvalidKeyException
digest
public MessageDigest digest(String algorithm)
throws NoSuchAlgorithmException
- Specified by:
digest
in interface Crypto
- Throws:
NoSuchAlgorithmException
md5
public MessageDigest md5()
- Specified by:
md5
in interface Crypto
sha1
public MessageDigest sha1()
- Specified by:
sha1
in interface Crypto
sha256
public MessageDigest sha256()
- Specified by:
sha256
in interface Crypto
sha512
public MessageDigest sha512()
- Specified by:
sha512
in interface Crypto
hmacSHA1
public Mac hmacSHA1(byte[] key)
throws InvalidKeyException
- Specified by:
hmacSHA1
in interface Crypto
- Throws:
InvalidKeyException
hmacSHA256
public Mac hmacSHA256(byte[] key)
throws InvalidKeyException
- Specified by:
hmacSHA256
in interface Crypto
- Throws:
InvalidKeyException
certFactory
public CertificateFactory certFactory()
- Specified by:
certFactory
in interface Crypto
rsaKeyFactory
public KeyFactory rsaKeyFactory()
- Specified by:
rsaKeyFactory
in interface Crypto
rsaKeyPairGenerator
public KeyPairGenerator rsaKeyPairGenerator()
- Specified by:
rsaKeyPairGenerator
in interface Crypto
Copyright © 2009-2011 jclouds. All Rights Reserved.