Uses of Class
be.fgov.ehealth.etee.crypto.encrypt.EncryptionToken

Packages that use EncryptionToken
be.fgov.ehealth.etee.crypto.encrypt Classes for sealing of message and validation of ETKs. 
 

Uses of EncryptionToken in be.fgov.ehealth.etee.crypto.encrypt
 

Methods in be.fgov.ehealth.etee.crypto.encrypt that return EncryptionToken
 EncryptionToken EncryptionTokenFactory.create(byte[] encryptionTokenKeyBytes)
          Creates an EncryptionToken from ETK encoded bytes.
 EncryptionToken EncryptionTokenFactory.create(java.io.File encryptionTokenFile)
           
 EncryptionToken EncryptionTokenFactory.create(java.io.InputStream encryptionTokenStream)
           
 EncryptionToken EncryptionTokenFactory.create(java.lang.String encryptionTokenBase64)
           
 

Methods in be.fgov.ehealth.etee.crypto.encrypt that return types with arguments of type EncryptionToken
 CryptoResult<EncryptionToken> EncryptionTokenChecker.validate(EncryptionToken encryptionToken)
           
 

Methods in be.fgov.ehealth.etee.crypto.encrypt with parameters of type EncryptionToken
 byte[] DataSealer.seal(EncryptionToken etk, byte[] dataToSeal)
          Seals the given data so that it can be exchanged safely to the owner of the given EncryptionToken.
 byte[] DataSealer.seal(EncryptionToken asymKek, byte[] dataToSeal, javax.crypto.SecretKey symKek, java.lang.String base64encodedSymKekId)
          Seals the given data so that it can be exchanged safely to the owner of the given EncryptionToken and to the unknown addressee who has access to the SecretKey.
 void DataSealer.seal(EncryptionToken asymKek, java.io.InputStream dataToSeal, java.io.OutputStream sealedData)
          Seals a given message for a known addressee.
 void DataSealer.seal(EncryptionToken asymKek, java.io.InputStream dataToSeal, java.io.OutputStream sealedData, javax.crypto.SecretKey symKek, java.lang.String base64encodedSymKekId)
          Seals a given message for a known addressee and for unknown addressee(s) who have access to the secret key.
 CryptoResult<EncryptionToken> EncryptionTokenChecker.validate(EncryptionToken encryptionToken)
           
 

Method parameters in be.fgov.ehealth.etee.crypto.encrypt with type arguments of type EncryptionToken
 byte[] DataSealer.seal(java.util.Set<EncryptionToken> asymKeks, byte[] dataToSeal)
          Seals the given data so that it can be exchanged safely to the owners of the given EncryptionTokens.
 byte[] DataSealer.seal(java.util.Set<EncryptionToken> asymKeks, byte[] dataToSeal, javax.crypto.SecretKey symKek, java.lang.String base64encodedSymKekId)
          Seals the given data so that it can be exchanged safely to the owners of the given EncryptionTokens and to the unknown addressee(s) who has access to the SecretKey.
 void DataSealer.seal(java.util.Set<EncryptionToken> asymKeks, java.io.InputStream dataToSeal, java.io.OutputStream sealedData)
          Seals a given message for a set of known addressees.
 void DataSealer.seal(java.util.Set<EncryptionToken> asymKeks, java.io.InputStream dataToSeal, java.io.OutputStream sealedData, javax.crypto.SecretKey symKek, java.lang.String base64encodedSymKekId)
          Seals a given message for a set of known addressees and for unknown addressee(s) who have access to the secret key.
 



Copyright © 2018 eHealth. All Rights Reserved.