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