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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Copyright 2023 The rust-ggstd authors. All rights reserved.
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
use crateaes;
use crate;
// import (
// "bytes"
// "crypto/aes"
// "crypto/cipher"
// "crypto/des"
// "testing"
// )
// #[test]
// fn TestCryptBlocks() {
// buf := make([]byte, 16)
// block, _ := aes.NewCipher(buf)
// mode := cipher.NewCBCDecrypter(block, buf)
// mustPanic(t, "crypto/cipher: input not full blocks", fn() { mode.crypt_blocks(buf, buf[..3]) })
// mustPanic(t, "crypto/cipher: output smaller than input", fn() { mode.crypt_blocks(buf[..3], buf) })
// mode = cipher.NewCBCEncrypter(block, buf)
// mustPanic(t, "crypto/cipher: input not full blocks", fn() { mode.crypt_blocks(buf, buf[..3]) })
// mustPanic(t, "crypto/cipher: output smaller than input", fn() { mode.crypt_blocks(buf[..3], buf) })
// }
// #[test]
// fn mustPanic(, msg string, f fn()) {
// defer fn() {
// err := recover()
// if err == nil {
// t.Errorf("function did not panic, wanted %q", msg)
// } else if err != msg {
// t.Errorf("got panic %v, wanted %q", err, msg)
// }
// }()
// f()
// }