You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While trying to implement #429 I came across with the KeyDumperInterface:
interface KeyDumperInterface
{
/**
* Dumps a key to be shared between parties.
*
* @return resource|string
*/
public function dumpKey();
}
All of the KeyLoaders included within the bundle implements this interface.
I searched the bundle for the usage of dumpKey() method however it seems that it isn't used anywhere. What is the purpose of this interface and required dumpKey method?
The text was updated successfully, but these errors were encountered:
While trying to implement #429 I came across with the KeyDumperInterface:
All of the KeyLoaders included within the bundle implements this interface.
I searched the bundle for the usage of
dumpKey()
method however it seems that it isn't used anywhere. What is the purpose of this interface and requireddumpKey
method?The text was updated successfully, but these errors were encountered: