247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
|
test MD_Errors-8.5 {No digest} -body {
::tls::md -hex -data value
} -result {No digest specified} -returnCodes {1}
test MD_Errors-8.6 {Invalid option} -body {
::tls::md -digest sha256 -bogus value
} -result {bad option "-bogus": must be -bin, -channel, -cipher, -command, -data, -digest, -file, -filename, -hex, -key, or -mac} -returnCodes {1}
test MD_Errors-8.7 {Invalid file} -body {
::tls::md -digest sha256 -file bogus
} -result {couldn't open "bogus": no such file or directory} -returnCodes {1}
test MD_Errors-8.8 {Invalid channel} -body {
::tls::md -digest sha256 -channel bogus
|
|
|
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
|
test MD_Errors-8.5 {No digest} -body {
::tls::md -hex -data value
} -result {No digest specified} -returnCodes {1}
test MD_Errors-8.6 {Invalid option} -body {
::tls::md -digest sha256 -bogus value
} -result {bad option "-bogus": must be -bin, -binary, -hex, -hexadecimal, -chan, -channel, -cipher, -command, -data, -digest, -file, -filename, -hash, -key, or -mac} -returnCodes {1}
test MD_Errors-8.7 {Invalid file} -body {
::tls::md -digest sha256 -file bogus
} -result {couldn't open "bogus": no such file or directory} -returnCodes {1}
test MD_Errors-8.8 {Invalid channel} -body {
::tls::md -digest sha256 -channel bogus
|