}
protected void fillPublicTypeSpecificParams(Map<String,Object> params)
{
ECPublicKey ecPublicKey = getECPublicKey();
ECPoint w = ecPublicKey.getW();
int coordinateByteLength = getCoordinateByteLength();
putBigIntAsBase64UrlEncodedParam(params, X_MEMBER_NAME, w.getAffineX(), coordinateByteLength);
putBigIntAsBase64UrlEncodedParam(params, Y_MEMBER_NAME, w.getAffineY(), coordinateByteLength);
params.put(CURVE_MEMBER_NAME, getCurveName());
}