반응형

분류 전체보기

(C#) 암호화 모듈 MD5, SHA256

C#에서 문자열을 암호화 할 때 사용할 수 있는 암호화 모듈입니다. 아래의 코드를 복사하여 사용하면 됩니다. using System.Security.Cryptography; using System.Text; // MD5 암호화 128bit 암호화 public static string MD5Hash(string s) { MD5 md5 = new MD5CryptoServiceProvider(); byte[] hash = md5.ComputeHash(Encoding.ASCII.GetBytes(s)); StringBuilder stringBuilder = new StringBuilder(); foreach (byte b in hash) { stringBuilder.AppendFormat("{0:X2}", b);..

C# 2023.04.18

순서도(flowchart) 그리는 사이트

프로그램 설치 없이 사이트 접속만으로 순서로를 그릴 수 있습니다. https://app.diagrams.net/ Flowchart Maker & Online Diagram Software Flowchart Maker and Online Diagram Software draw.io is free online diagram software. You can use it as a flowchart maker, network diagram software, to create UML online, as an ER diagram tool, to design database schema, to build BPMN online, as a circuit d app.diagrams.net

통합게시판 2023.04.18

강의Zoomit v8.01 강의용 프레젠테이션 도구

강의에서 많이 사용되는 프레젠테이션 도구입니다. 사용 키 Draw: Ctrl + 2 r: red g:green b:blue o:orange p:pink y: yellow Zoomit v8.01 강의용 프레젠테이션 도구 더 많은 설명 알아보기 ↓ https://learn.microsoft.com/ko-kr/sysinternals/downloads/zoomit ZoomIt - Sysinternals 화면에서 확대/축소 및 그리기를 위한 프레젠테이션 유틸리티입니다. learn.microsoft.com

통합게시판 2023.04.18

(C#, ASP.NET) 파일명 중복 체크, FileUpload

파일 업로드에서 파일명이 중복된 경우 파일명을 ..(1), ..(2)와 같은 형태로 변경해서 중복되지 않도록 파일명을 변경합니다. aa.c --> aa(1).c aa.c --> aa(2).c (2023-05-05 코드 수정) using System.IO; ... public string DuplicateFile(string dir, string filename) { string file = Path.GetFileNameWithoutExtension(filename); string ext = Path.GetExtension(filename); string new_filename = filename; string temp_filename = String.Empty; int cnt = 1; while (Fil..

C#_ASP.NET 2023.04.18

MySQL, MySQL Connector 다운로드

MySQL Connector는 각종 프로그램 언어에서 MySQL에 연결하기 위해 설치해야 하는 프로그램입니다. MySQL https://www.mysql.com/downloads/ MySQL :: MySQL Downloads MySQL Cluster CGE MySQL Cluster is a real-time open source transactional database designed for fast, always-on access to data under high throughput conditions. MySQL Cluster MySQL Cluster Manager Plus, everything in MySQL Enterprise Edition Learn More » C www.mysql.com My..

다운로드_링크 2023.04.18
반응형