generator = KeyPairGenerator.getInstance( ALGORITHM );
}
catch ( NoSuchAlgorithmException e )
{
LdapException ne = new LdapException( I18n.err( I18n.ERR_291 ) );
ne.initCause( e );
throw ne;
}
generator.initialize( KEY_SIZE );
KeyPair keypair = generator.genKeyPair();