221222223224225226227
/** * Create an Entropy with a BinarySecret */ public Entropy createEntropy(final BinarySecret secret) { return new EntropyImpl(secret); }
228229230231232233234
/** * Create an Entropy with an xenc:EncryptedKey */ public Entropy createEntropy(final EncryptedKey key) { return new EntropyImpl(key); }