This repository was archived by the owner on Jun 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 299
/
Copy pathocfb_test.html
49 lines (49 loc) · 2.12 KB
/
ocfb_test.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!-- Copyright 2012 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// -->
<!DOCTYPE html>
<title>Unit Test of e2e.openpgp.Ocfb</title>
<script src="../../../../../javascript/closure/base.js"></script>
<script src="test_js_deps-runfiles.js"></script>
<script>
goog.require('e2e.cipher.Aes');
goog.require('e2e.openpgp.Ocfb');
goog.require('e2e.random');
goog.require('goog.array');
goog.require('goog.testing.jsunit');
</script>
<script>
function testConsistencyResync() {
e2e.random.seedRandomBytesWebCrypto(256);
var aes = new e2e.cipher.Aes(e2e.cipher.Algorithm.AES128,
{key:goog.array.repeat(0x77, 16)});
var aesocfb = new e2e.openpgp.Ocfb(aes, true);
var plaintext = goog.array.repeat(0x66, 51);
var ciphertext = e2e.async.Result.getValue(aesocfb.encrypt(plaintext));
var deciphered = e2e.async.Result.getValue(aesocfb.decrypt(ciphertext));
assertArrayEquals("Consistency in encrypting/decrypting.",
plaintext,
deciphered);
}
function testNoResyncDecryptThrows() {
var aes = new e2e.cipher.Aes(e2e.cipher.Algorithm.AES128, {key:goog.array.repeat(0x77, 16)});
var aesocfb = new e2e.openpgp.Ocfb(aes, false);
var plaintext = goog.array.repeat(0x66, 51);
var ciphertext = goog.crypt.hexToByteArray(
"f26a24f487a3abd4d81f8072a1a2924364beba531a6b855f0239cda666eecf3f47c98dc52ea3bfd607" +
"73f1a40b182577789c0149d3010d84d90f85001e755b79eaaa67a52f");
assertThrows("OpenPGP-CFB resync=false throws.",
function () { aesocfb.decrypt(ciphertext); } );
}
</script>