일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Xcode
- apple
- Nodejs
- WebAuthn
- css
- MSYS2
- 앨범북
- albumbook
- fido
- 인증
- MFA
- kmip
- Android
- git
- OSX
- FIDO2
- SwiftUI
- otpkey
- 앱스토어
- MYSQL
- appres
- SSL
- 애플
- openssl
- 2FA
- SWIFT
- 안드로이드
- SSH
- 앱리소스
- OTP
- Today
- Total
목록인증기술 (127)
인디노트
PKI 및 오픈 소스 구현 안내서시멘 (시몬스) XenitellisOpenCA 팀 Copyright © 1999, 2000 by Simeon (Simos) Xenitellis이 문서는 공개 키 기반 구조, PKIX 표준, 실질적인 PKI 기능을 설명하고 사용 가능한 오픈 소스 PKI 구현에 대한 개요를 제공합니다. 그 목표는 실행 가능한 오픈 소스 PKI 구현의 창출을 촉진하는 것입니다.이 문서의 최신 버전은 OSPKI Book WWW 사이트 ( http://ospkibook.sourceforge.net/) 에서 찾을 수 있습니다 .GNU 자유 문서 사용 허가서 버전 1.1 또는 자유 소프트웨어 재단이 발행 한 이후 버전의 조건에 따라 이 문서를 복사, 배포 및 수정할 수 있는 권한이 부여됩니다. 불변 ..
import javax.crypto.Cipher; import javax.xml.bind.DatatypeConverter; import java.security.Key; import java.security.KeyPair; import java.security.KeyPairGenerator; import java.security.KeyStore; import java.security.cert.Certificate; public class Main { public static void main(String[] args) { byte[] txt = "This is a secret message for your own eyes only".getBytes(); byte[] encText; try{ // Load..
Simple Certificate Enrolment Protocol draft-gutmann-scep-04.txtAbstractThis document specifies the Simple Certificate Enrolment Protocol (SCEP), a PKI communication protocol that leverages existing technology by using CMS (formerly known as PKCS #7) and PKCS #10 over HTTP. SCEP is the evolution of the enrolment protocol sponsored by Cisco Systems, which enjoys wide support in both client and ser..
Example how to create PKCS#10 Certificate Signing Request (CSR) using Sun JDK, This example creates signature externally - suitable for Cryptographic devices such as Hardware Security Module (HSM)package com.ilirium.client; import java.io.ByteArrayOutputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.PrintStream; import ja..
인증기술에 있어서 매우 중요하다.
인증·암호 기술현재 가장 많이 적용되고 있는 공개키기반구조(PKI)TLS(Transport Layer Security) / DTLS(Datagram Transport Layer Security)가 아닌, 비밀키 경량암호 알고리즘(LEA, HIGHT, AES, ECDSA, ECDSA)을 사용한다. PKI 기반 TLS / DTLS는 저사양 IoT 단말에 적용하기 어렵고 성능도 저하시킬 수 있는데다 취약성도 발견
Creating X.509 certificates programmatically in JavaMy probem statement was simple: create a X.509 certificate with only a few fields being configurable, sign it with an already existing CA private key/certificate combination, and write the new certificate in PKCS12 format. Then it became complicated: I needed to it with Java, on a PDA. I spent about 2 days to get this seemingly simple task to w..
package net.java.edem; import java.io.*;import java.security.*;import java.security.spec.*; public class Adam { public static void main(String args[]) {Adam adam = new Adam();try {String path = "C:\\Documents and Settings\\george\\My Documents\\workspaces\\gsoc09\\playground\\tmp"; KeyPairGenerator keyGen = KeyPairGenerator.getInstance("DSA"); keyGen.initialize(1024);KeyPair generatedKeyPair = k..
import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.math.BigInteger; import java.security.InvalidAlgorithmParameterException; import java.security.InvalidKeyException; import java.security.KeyPair; import java.security.KeyPairGenerator; import java.security.KeyStore; import java.security.KeyStoreException; import java.secu..