This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Using ssh-keygen to export the key in the .pem format worked for me. | |
| ssh-keygen -f id_rsa.pub -m 'PEM' -e > id_rsa.pem` | |
| # Then simply copy the .pem key as necessary. | |
| # For reference: | |
| # the -f id_rsa.pub portion indicates the input file to read from | |
| # -m 'PEM indicates a PEM filetype | |
| # the -e option indicates that the output will be exported |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.paddypower.financials.market.management.rest.logging; | |
| import java.io.BufferedReader; | |
| import java.io.ByteArrayInputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import javax.servlet.Filter; | |
| import javax.servlet.FilterChain; |
OlderNewer