• Y
  • List All
  • Feedback
    • This Project
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
chominsoo4245 / mjon_git star
Forked from hylee / mjon_git
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
mjon_gitsrcmainjavaitnletutluserserviceSecuKeyUtil.java
Download as .zip file
File name
Commit message
Commit date
DATABASE
mjon_git
2023-06-12
src/main
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2025-05-08
.codetogether.ignore
mjon_git
2023-06-12
.gitignore
gitignore 적용
2023-06-12
pom.xml
카카오발송 진행중
2025-03-25
File name
Commit message
Commit date
java
Merge branch 'master' of http://yongjoon.cho@vcs.iten.co.kr:9999/hylee/mjon_git
2025-05-08
resources
Merge branch 'master' of http://yongjoon.cho@vcs.iten.co.kr:9999/hylee/mjon_git
2025-05-08
webapp
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2025-05-08
File name
Commit message
Commit date
egovframework
custom idgen 수정
2024-11-27
itn
Merge branch 'master' of http://yongjoon.cho@vcs.iten.co.kr:9999/hylee/mjon_git
2025-05-08
File name
Commit message
Commit date
com
알림톡 발송로직 테스트 중
2025-03-26
let
Merge branch 'master' of http://yongjoon.cho@vcs.iten.co.kr:9999/hylee/mjon_git
2025-05-08
web
메인 팝업 캐시 사용자 완료
2025-02-28
File name
Commit message
Commit date
cert
테스트서버에서 로그인 인증번호 발송 시 테스트슬랙알림채널로 발송
2025-01-16
cmm/vo
문자전송 진행중
2025-01-20
cop
이용약관 > 불법스팸방지정책 페이지 수정
2024-11-26
crypto/web
mjon_git
2023-06-12
fax
문자, 팩스발송 주소록 불러오기 완료
2024-12-24
hangulparser
mjon_git
2023-06-12
kakao
알림톡 발송결과 성능 개선
2025-05-08
komoran
mjon_git
2023-06-12
lett
선택한 그림문자의 우선선위 변경 기능 추가
2023-09-05
mail
문자발송로직 impl 화 완료 -> 리펙토링 진행 중
2024-09-27
main
2024-11-22 10:51 과부하 쿼리 주석처리
2024-11-22
mjo
선거문자 불법수집정보 신고번호 118번 => 불법수집정보 신고번호 : 선거관리위원회 ☎1390 수정
2025-04-17
module/base
알림톡 발송로직 테스트 중
2025-03-26
org
mjon_git
2023-06-12
schdlr/service
문자발송로직 > 이벤트 체크
2024-12-23
sec
mjon_git
2023-06-12
solr
mjon_git
2023-06-12
sts
mjon_git
2023-06-12
sym
2025-05-08 15:14 문자온 SEO 개선
2025-05-08
uat
헤더 로그인 정상적으로 돌리기 개발
2025-03-26
uss
발송결과 리스트 화면 완료
2025-01-23
utl
2025-05-08 문자온 사이트 SEO 개선 작업
2025-05-08
File name
Commit message
Commit date
fcc/service
mjon_git
2023-06-12
log4j
mjon_git
2023-06-12
sim/service
이준호 문자온 커밋 - IP 받아오는 방식 수정
2023-07-28
user/service
2025-05-08 문자온 사이트 SEO 개선 작업
2025-05-08
File name
Commit message
Commit date
CheckBoardUtil.java
mjon_git
2023-06-12
CheckFileUtil.java
mjon_git
2023-06-12
CheckLoginUtil.java
mjon_git
2023-06-12
CheckNoServiceCommon.java
mjon_git
2023-06-12
ExcelUtil.java
2025-03-07 16:50 결제관리 excel download 수정
2025-03-07
IndexNowUtil.java
2025-05-08 문자온 사이트 SEO 개선 작업
2025-05-08
MjonNoticeSendUtil.java
회원 이메일 발송 건수 15분 단위로 기존 200건 -> 500건으로 변경
2024-10-25
MjonSmsCertSendUtil.java
문자온 대표번호 변경으로 인한 15518011 으로 변경
2024-07-31
SecuKeyUtil.java
mjon_git
2023-06-12
hylee 2023-06-12 22eea6e mjon_git UNIX
Raw Open in browser Change history
package itn.let.utl.user.service; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; /** * * 파일 체크에 대한 Util 클래스 * @author 사업기술본부 조용준(ITN) * @since 2021.07.16 * @version 1.0 * @see * * <pre> * << 개정이력(Modification Information) >> * * 수정일 수정자 수정내용 * ------- -------- --------------------------- * 2021.07.16 조용준 최초 생성 * * * </pre> */ @Controller public class SecuKeyUtil { private static final Logger LOGGER = LoggerFactory.getLogger(CheckBoardUtil.class); //make secu key public static String makeKey( int p_start_length , int p_end_length , String p_key_type //H or ELSE ) throws Exception{ LOGGER.debug("SecuKeyUtil.makeKey()"); String v_ret=""; int p_length = (int )(Math.random() * (p_end_length-p_start_length+1) + p_start_length);//5~14 - length int p_random; if ("H".equals(p_key_type)) { for (int i=0;i<p_length;i++){ p_random = (int )(Math.random() * 15);//0~9 v_ret +=Integer.toHexString(p_random); //v_ret +=Integer.toString(random2); } }else { for (int i=0;i<p_length;i++){ p_random = (int )(Math.random() * 9);//0~9 //v_ret +=Integer.toHexString(random2); v_ret +=Integer.toString(p_random); } } return v_ret; } }

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up