[NodeJS] crypto 양방향 암호화 복호화
2023. 8. 6. 01:41
개발/NodeJS
const crypto = require('crypto'); const algorithm = 'aes-256-cbc'; const key = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'; // key (32 바이트) const iv = 'bbbbbbbbbbbbbbbb'; // Initialization Vector (16 바이트) function encrypt(text) { const cipher = crypto.createCipheriv('', key, iv); let encrypted = cipher.update(text, 'utf8', 'hex'); encrypted += cipher.final('hex'); return encrypted; } function decrypt(enc..

[NodeJS] Google Authenticator 2FA 구현
2023. 7. 20. 23:16
개발/NodeJS
순서 개요 Secret key 및 QR 코드 생성 Google Authenticator 앱에서 QR 코드로 계정 생성 인증 번호 검증 패키지 설치 npm install speakeasy qrcode Secret Key 및 QR 코드 생성 index.js 생성 const speakeasy = require('speakeasy'); const qrcode = require('qrcode'); // Secret Key 생성 var secret = speakeasy.generateSecret({ name: "onestone-test" }); console.log(secret); // 생성한 Secret Key를 기반으로 QR 코드 생성(URL) qrcode.toDataURL(secret.otpauth_url, ..

[Strapi] 설치 방법 (mysql 연동)
2022. 5. 1. 13:39
개발/Strapi
사전 작업 yarn 설치 mysql 서버 설치 mysql 계정 생성 (Strapi DB 연동을 위한 계정) mysql 데이터베이스 생성 (Strapi에서 사용할 DB) A. 프로젝트 생성 yarn create strapi-app 프로젝트명 1. Custom 선택 2. DB 클라이언트 선택 (여기서는 mysql 선택, 디폴트는 sqlite) 3. 연동할 Mysql DB 이름 입력 (Strapi 실행 전 DB 생성해야 함) 4. Mysql 서버 호스트명(IP) 입력 5. Mysql 서비스 포트 입력 6. Mysql 계정 정보 입력 (Strapi 실행 전 계정 생성해야 함) 연동할 DB에서 테이블을 생성, 수정, 변경, 삭제할 수 있는 권한이 있어야 함 Strapi 구동하는 서버에서 연동할 Mysql 서버 접..
[Spring Boot] intelliJ - Plugin [id: 'org.springframework.boot', version: '2.6.4'] was not found in any of the following sources
2022. 3. 22. 13:21
개발/Spring
방화벽 때문에 gradle-wrapper.properties 내의 distributionUrl 을 못 가져오는 경우 build.gradle 수정 이전 plugins { id 'org.springframework.boot' version '2.6.4' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' } 변경 buildscript { repositories { mavenLocal() maven { url 'https://maven.aliyun.com/repository/google/' } maven { url 'https://maven.aliyun.com/repository/public/' } maven { url 'https:..
[Spring Boot] Maven JPA / MariaDB 설정
2022. 3. 13. 13:21
개발/Spring
1. Dependency 추가 pom.xml org.springframework.boot spring-boot-starter-data-jpa org.mariadb.jdbc mariadb-java-client runtime 2. Datasource 설정 application.properties spring.datasource.driver-class-name=org.mariadb.jdbc.Driver spring.datasource.url=jdbc:mariadb://IP주소:3306/DB명 spring.datasource.username=계정명 spring.datasource.password=계정비밀번호 3. JPA / 로깅 설정 application.properties # none: 아무것도 실행하지 않는..