aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/crypto/index.html
blob: 759b7c045d7eb6bfa22cb026b3784918cbba5655 (plain)
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
32
33
34
35
---
title: Crypto
slug: Web/API/Crypto
translation_of: Web/API/Crypto
---
<p>{{APIRef("Web Crypto API")}}</p>

<p><code><strong>Crypto</strong></code> 인터페이스는 현재 환경에서 사용 가능한 기본적인 암호화 기법을 제공합니다. 이 인터페이스를 통해 암호학적으로 강력한 무작위 숫자 생성기나 암호화에 필요한 기본 요소에 접근할 수 있습니다.</p>

<p>이 인터페이스 객체는 {{domxref("Window.crypto")}} 속성을 통해 웹에서 사용 가능합니다.</p>

<h2 id="속성">속성</h2>

<p><em>이 인터페이스는 {{domxref("RandomSource")}}에 정의된 속성을 구현하고 있습니다.</em></p>

<dl>
 <dt>{{domxref("Crypto.subtle")}} {{experimental_inline}}{{readOnlyInline}}</dt>
 <dd>해싱, 서명, 암호화, 복호화같은 암호화 기법에 필요한 공통 요소들에 접근할 수 있는 객체를 반환.</dd>
</dl>

<h2 id="메소드">메소드</h2>

<p><em>이 인터페이스는 {{domxref("RandomSource")}}에 정의된 속성을 구현하고 있습니다.</em></p>

<dl>
 <dt>{{ domxref("RandomSource.getRandomValues()") }}</dt>
 <dd>넘겨받은 {{ jsxref("TypedArray") }}를 암호학적으로 무작위인 값으로 채움.</dd>
 <dt>
 <h2 id="더보기">더보기</h2>

 <ul>
  <li><a href="/en-US/docs/Components.utils.importGlobalProperties">Components.utils.importGlobalProperties</a></li>
 </ul>
 </dt>
</dl>