참고 : http://www.java2s.com/Code/Java/Collections-Data-Structure/BinaryTree.htm static class Node { Node left; Node right; int value; public Node(int value) { this.value = value; } }public void insert(Node node, int value) { if (value < node.value) { if (node.left != null) { insert(node.left, value); } else { System.out.println(" Inserted " + value + " to left of " + node.value); node.left = new ..
참고 : http://www.algolist.net/Algorithms/Sorting/Quicksort Why does it work?On the partition step algorithm divides the array into two parts and every element a from the left part is less or equal than every element b from the right part. Also a and b satisfy a ≤ pivot ≤ binequality. After completion of the recursion calls both of the parts become sorted and, taking into account arguments stated ..
%본 글은 Googling을 통해 찾은 정보들을 발번역/의역 한 것입니다. 틀린 부분은 지적 부탁 드립니다.1. Certificate Chain은 무엇인가?-> CA에는 두가지 타입이 존재한다. ROOT CAs와 Intermediate CAs. SSL Certification이 신뢰할 수 있게 되려면 Certificate는 공인된 CA로 부터 발행 되어야 한다.2. Intermediate CA란 무엇인가?-> Certificate Signing에 Private Key가 필요하다. 그와 반대로 Private Key가 누출되면 그에 의해 Signing된 모든 Certificate들은 쓰지 못하게 된다. 그로 인해 Private Key는 매우 높은 보안 레벨을 가진 장소에 보관된다. 사용자가 Certifica..
- Total
- Today
- Yesterday
- Java
- Consumer
- CompressedOops
- Kafka
- AWS
- GC
- Dynamodb
- DESIGN
- JVM
- Intermediate Certificate
- kerberos
- ranking
- OOP
- shenandoah
- SSL
- oops
- Certificate Chain
- authentication
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |