// How do I generate an instance of Ko-Lee protocol with specific parameters?
KLProtocolInstance KL = KLProtocolInstance::random( N , baseLenth , keyLenth );
// Get the keys
int theRank = KL.getBraidRank ( );
Word theKeyA = KL.getPrivateKeyA( );
Word theKeyB = KL.getPrivateKeyB( );
Word pubKeyA = KL.getPublicKeyA ( );
Word pubKeyB = KL.getPublicKeyB ( );
return 0;
}