-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert de to Markdown (part 1) (#7604)
- Loading branch information
1 parent
c35c73b
commit f76c462
Showing
1,346 changed files
with
81,617 additions
and
94,096 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: AesCbcParams | ||
slug: Web/API/AesCbcParams | ||
translation_of: Web/API/AesCbcParams | ||
--- | ||
{{ APIRef("Web Crypto API") }} | ||
|
||
Das **`AesCbcParams`** Verzeichnis (dictionary) der [Web Crypto API ](/de/docs/Web/API/Web_Crypto_API)wird als `algorithm` Parameter an die Funktionen {{domxref("SubtleCrypto.encrypt()")}}, {{domxref("SubtleCrypto.decrypt()")}}, {{domxref("SubtleCrypto.wrapKey()")}} und {{domxref("SubtleCrypto.unwrapKey()")}} übergeben, wenn der Algorithmus [AES-CBC](/de/docs/Web/API/SubtleCrypto/encrypt#AES-CBC) verwendet wird. | ||
|
||
## Eigenschaften | ||
|
||
- `name` | ||
- : A {{domxref("DOMString")}}. Der Wert sollte auf `AES-CBC` gesetzt werden. | ||
- `iv` | ||
- : Ein {{domxref("BufferSource")}}. Der Initialisierungsvektor. Er muss 16 Bytes lang sein und sollte unvorhersehbar und am besten kryptografisch zufällig sein. Er muss aber nicht geheim sein, er kann unverschlüsselt mit dem Kryptogram übertragen werden. | ||
|
||
## Beispiele | ||
|
||
Siehe Beispiele für {{domxref("SubtleCrypto.encrypt()")}} und {{domxref("SubtleCrypto.decrypt()")}}. | ||
|
||
## Spezifikationen | ||
|
||
| Spezifikation | Status | Kommentar | | ||
| ------------------------------------------------------------------------------------------------------------ | ---------------------------------------- | --------- | | ||
| {{ SpecName('Web Crypto API', '#dfn-AesCbcParams', 'SubtleCrypto.AesCbcParams') }} | {{ Spec2('Web Crypto API') }} | | | ||
|
||
## Browser Kompatibilität | ||
|
||
Browser mit Unterstützung für den "AES-CBC" Algorithmus werden die Methoden {{domxref("SubtleCrypto.encrypt()")}}, {{domxref("SubtleCrypto.decrypt()")}}, {{domxref("SubtleCrypto.wrapKey()")}} und {{domxref("SubtleCrypto.unwrapKey()")}} für diesen Typ unterstützen. | ||
|
||
## Siehe auch | ||
|
||
- CBC Modus wird in Sektion 6.2 des [NIST SP800-38A standard](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38a.pdf#%5B%7B%22num%22%3A70%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22Fit%22%7D%5D) spezifiziert. | ||
- {{domxref("SubtleCrypto.encrypt()")}}. | ||
- {{domxref("SubtleCrypto.decrypt()")}}. | ||
- {{domxref("SubtleCrypto.wrapKey()")}}. | ||
- {{domxref("SubtleCrypto.unwrapKey()")}}. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
title: AudioDestinationNode | ||
slug: Web/API/AudioDestinationNode | ||
translation_of: Web/API/AudioDestinationNode | ||
--- | ||
{{APIRef("Web Audio API")}} | ||
|
||
Die `AudioDestinationNode` Schnittstelle repräsentiert das Ziel bzw. den Ausgang eines Audiographen in einem gegebenen Kontext — in der Regel die Lautsprecher. Es könnte aber auch ein Knoten _(Node)_ sein, der Audiodaten in einem `OfflineAudioContext `aufzeichnet. | ||
|
||
`AudioDestinationNode` hat einen Eingang und keinen Ausgang (denn er ist der Ausgang, kein weiterer Audio Node kann verlinkt werden). Die Anzahl der Kanäle des Eingangs muss zwischen null und dem Wert von `maxChannelCount` liegen, sonst wird eine _Exception_ ausgelöst. | ||
|
||
Der `AudioDestinationNode` eines gegebenen `AudioContext` kann über das {{domxref("AudioContext.destination")}} Attribut erzeugt bzw. empfangen werden. | ||
|
||
| Anzahl Inputs | `1` | | ||
| -------------------- | ------------ | | ||
| Anzahl Outputs | `0` | | ||
| Kanalzählmethode | `"explicit"` | | ||
| Kanal Anzahl | `2` | | ||
| Kanal Interpretation | `"speakers"` | | ||
|
||
## Eigenschaften | ||
|
||
_erbt Eigenschaften von der Elternklasse,_ _{{domxref("AudioNode")}}_. | ||
|
||
- {{domxref("AudioDestinationNode.maxChannelCount")}} | ||
- : Ist ein `unsigned long` der die maximale Kanalzahl definiert, die das physische Gerät bedienen kann. | ||
|
||
## Methoden | ||
|
||
_Keine spezifischen Methoden; erbt die Methoden der Elternklasse,_ _{{domxref("AudioNode")}}_. | ||
|
||
## Beispiel | ||
|
||
Das Benutzen des` AudioDestinationNode` ist per Design einfach gehalten — es repräsentiert den Ausgang des physikalischen Geräts (Lautsprecher), so dass man dieses mit ein paar Zeilen Code mit einem Audiographen verbinden kann: | ||
|
||
```js | ||
var audioCtx = new AudioContext(); | ||
var source = audioCtx.createMediaElementSource(myMediaElement); | ||
source.connect(gainNode); | ||
gainNode.connect(audioCtx.destination); | ||
``` | ||
|
||
Für ein kompletteres Beispiel, sehen Sie sich eines unserer MDN Web Audio Beispiele, wie den [Voice-change-o-matic](http://mdn.github.io/voice-change-o-matic/) oder das [Violent Theremin](http://mdn.github.io/violent-theremin/) an. | ||
|
||
## Spezifikationen | ||
|
||
| Specification | Status | Comment | | ||
| ---------------------------------------------------------------------------------------------------------------------------- | ------------------------------------ | ------- | | ||
| {{SpecName('Web Audio API', '#the-audiodestinationnode-interface', 'AudioDestinationNode')}} | {{Spec2('Web Audio API')}} | | | ||
|
||
## Browser Kompatibilität | ||
|
||
{{Compat}} | ||
|
||
## See also | ||
|
||
- [Using the Web Audio API](/de/docs/Web/API/Web_Audio_API/Using_Web_Audio_API) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.