i am implementing blowfish using jce (java cryptography extension )
im generating the key using
KeyGenerator keyGenerator = KeyGenerator.ge tInstance("Blow fish");
keyGenerator.in it(128);
SecretKey key = keyGenerator.ge nerateKey();
now how do i retrieve the key so as to send it to another party or display it.. i have tried something and this is wat im getting : -
System.out.prin tln("the...