For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
| # ---------------------------------------------------------------------- | |
| # Instruction to have OpenWRT or LEDE on a X86 PC or Virtual Machine: | |
| # ---------------------------------------------------------------------- | |
| # boot using DamnSmallLinux or similar: | |
| sudo /etc/init.d/ssh start | |
| # see IP to connect using ssh | |
| ifconfig | |
| # set a password for root | |
| su |
For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
| import java.io.Serializable; | |
| import java.util.ArrayList; | |
| import java.util.HashMap; | |
| import java.util.Iterator; | |
| import java.util.List; | |
| import java.util.Map; | |
| import org.springframework.data.domain.Page; | |
| import org.springframework.data.domain.Pageable; | |
| import org.springframework.data.domain.Sort; |
| return new ResponseEntity<String>(HttpStatus.BAD_REQUEST); | |
| return new ResponseEntity<String>(json,HttpStatus.OK); |