전체 글
-
개인정보 처리방침Programing Study/E.T.C 2021. 3. 21. 22:48
Privacy Policy Insu Park built the FrenchVoca app as a Free app. This SERVICE is provided by Insu Park at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in ..
-
SSL) https의 SSL 방식 원리(간단 정리)Programing Study/네트워크 2021. 3. 21. 18:50
//공부한 내용을 바탕으로 정리 했기 때문에 약간의 오류가 있을수 있습니다. 일반적으로 https의 인증서를 서버와 클라이언트가 안정적으로 공유 할때는 SSL의 두가지방식 즉 대칭키와 공개키를 복합적으로 사용해서 인증서를 공유한다. 이런 이유는 공개키만으로 인증서를 공유하게 되면 컴퓨터 리소스를 많이 사용해야하기 때문에 비효율 적이기 때문이다. 인증서를 서버와 클라이언트 모두 안전하게 공유하는 순서를 리스트로 정리하면 다음과 같다. 1. 클라(웹브라우저)는 서버에 접근한다. 2. 서버는 클라에게 SSL방식의 공개키를 방식을 이용하여 공개키를 전송한다 (Private키는 서버가 가지고있다.) 3. 클라는 서버로 부터 전송받은 공개키를 웹브라우저의 CA리스트에 포함된 키인지 확인한다. 4. CA리스트에 포함..
-
SSL)SSL에서 사용하는 암호화의 종류(대칭키, 공개키)Programing Study/네트워크 2021. 3. 21. 18:08
1. 대칭키 단 하나의 "키(A)"로 전송하고자하는 파일을 암호화하고 암호화한 파일을 복호화할때도 그 "키(A)"로 복호화하여 전송한 문서를 해독한다. 실습해보면 다음과 같다. - 단점 : 암호화한 키가 같이 전송되기 때문에 키를 해킹당할경우 나머지 전체의 파일에 대한 보안이 다 뚫리는 것이기 때문에 불안정한 점이 많다. 2. 공키키 대칭키의 단점을 보완하기 위해 전송하기 위한 파일을 복호화 만을 담당 하는 private 키(비공개키) 와 파일을 암호화 하기 위한 public키(공개키) 를 동시에 생성하는 방식이다. - 장점 : 복호화 하는 키자체는 해당 방식을 만든 사람만 가지고 있기 때문에 분실의 위험이 대칭키 보다 적어서 보안이 좋다. 실습하면 다음과 같다. //해당 실습내용은 opentutoria..
-
Flutter) Debug 모드 Release 모드 체크 하기(참고자료)Programing Language/Flutter(Dart) 2021. 3. 21. 01:46
google Admobs달아줄때 디버그 모드에서는 실제 광고 단위 유닛 아이디를 입력하면 올바른 값이 나오지 않는다. stackoverflow.com/a/55612795 How to check flutter application is running in debug? I have a short question. I'm looking for a way to execute code in Flutter when the app is in Debug mode. Is that possible in Flutter? I can't seem to find it anywhere in the documentation. Somethin... stackoverflow.com 해당 자료를 참고하여 if 문으로 debug모드일때는 ..
-
Flutter) Android Release로 업로드하기!Programing Language/Flutter(Dart) 2021. 3. 21. 01:17
flutter-ko.dev/docs/deployment/android Android 앱 출시 준비하기 Flutter 앱을 개발하는 동안, 커멘드 라인에서의 `flutter run`을 실행하거나IDE에 있는 툴바 **Run** 과 **Debug**를 선택하여 앱을 테스트할 수 있습니다. Flutter는 기본적으로 앱의 _debug_ 버전을 빌드합니 flutter-ko.dev 여기 부분 참고한다. 그리고 storePassword= keyPassword= keyAlias=key storeFile= 여기에 를 남기고 비밀번호와 경로를 적는게아니라 을 지워준다. 이것 때문에 고생했다.
-
Flutter) 구글 광고 달기 (AdMob) [참고자료]Programing Language/Flutter(Dart) 2021. 3. 21. 01:14
codelabs.developers.google.com/codelabs/admob-inline-ads-in-flutter#0 Adding an AdMob banner and native inline ads to a Flutter app In this codelab, you’ll learn how to add AdMob inline ads (Banner and Native) to a flutter app. codelabs.developers.google.com pub.dev/packages/google_mobile_ads google_mobile_ads | Flutter Package Flutter plugin for Google Mobile Ads, supporting banner, interstitia..
-
-
Flask) 서버 재설정(기존 설치 이후 도메인 바뀌었을때)Programing Language/Python 2021. 3. 18. 14:08
www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-18-04 How To Serve Flask Applications with Gunicorn and Nginx on Ubuntu | DigitalOcean In this guide, you will build a Python application using the Flask microframework on Ubuntu 18.04. The bulk of this article will be about how to set up the Gunicorn application server and how to launch th..