Module: RbNaCl::SelfTest

Defined in:
lib/rbnacl/self_test.rb

Class Method Summary collapse

Class Method Details

.box_common_test(box) ⇒ Object



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
# File 'lib/rbnacl/self_test.rb', line 28

def box_common_test(box)
  nonce      = vector :box_nonce
  message    = vector :box_message
  ciphertext = vector :box_ciphertext

  unless box.encrypt(nonce, message) == ciphertext
    #:nocov:
    raise SelfTestFailure, "failed to generate correct ciphertext"
    #:nocov:
  end

  unless box.decrypt(nonce, ciphertext) == message
    #:nocov:
    raise SelfTestFailure, "failed to decrypt ciphertext correctly"
    #:nocov:
  end

  begin
    passed         = false
    corrupt_ct     = ciphertext.dup
    corrupt_ct[23] = ' '
    box.decrypt(nonce, corrupt_ct)
  rescue CryptoError
    passed = true
  ensure
    passed or raise SelfTestFailure, "failed to detect corrupt ciphertext"
  end
end

.box_testObject



15
16
17
18
19
20
21
# File 'lib/rbnacl/self_test.rb', line 15

def box_test
  alicepk = RbNaCl::PublicKey.new(vector(:alice_public))
  bobsk = RbNaCl::PrivateKey.new(vector(:bob_private))

  box = RbNaCl::Box.new(alicepk, bobsk)
  box_common_test(box)
end

.digital_signature_testObject



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
# File 'lib/rbnacl/self_test.rb', line 57

def digital_signature_test
  signing_key = SigningKey.new(vector(:sign_private))
  verify_key  = signing_key.verify_key

  unless verify_key.to_s == vector(:sign_public)
    #:nocov:
    raise SelfTestFailure, "failed to generate verify key correctly"
    #:nocov:
  end

  message   = vector :sign_message
  signature = signing_key.sign(message)

  unless signature == vector(:sign_signature)
    #:nocov:
    raise SelfTestFailure, "failed to generate correct signature"
    #:nocov:
  end

  unless verify_key.verify(signature, message)
    #:nocov:
    raise SelfTestFailure, "failed to verify a valid signature"
    #:nocov:
  end

  begin
    passed         = false
    bad_signature = signature[0,63] + '0'
    verify_key.verify(bad_signature, message)
  rescue CryptoError
    passed = true
  ensure
    passed or raise SelfTestFailure, "failed to detect corrupt ciphertext"
  end
end

.hmac_test(klass, tag) ⇒ Object



104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/rbnacl/self_test.rb', line 104

def hmac_test(klass, tag)
  authenticator = klass.new(vector(:auth_key))

  message = vector :auth_message

  unless authenticator.auth(message) == vector(tag)
    #:nocov:
    raise SelfTestFailure, "#{klass} failed to generate correct authentication tag"
    #:nocov:
  end

  unless authenticator.verify(vector(tag), message)
    #:nocov:
    raise SelfTestFailure, "#{klass} failed to verify correct authentication tag"
    #:nocov:
  end

  begin
    passed         = false
    authenticator.verify(vector(tag), message + ' ')
  rescue CryptoError
    passed = true
  ensure
    passed or raise SelfTestFailure, "failed to detect corrupt ciphertext"
  end
end

.secret_box_testObject



23
24
25
26
# File 'lib/rbnacl/self_test.rb', line 23

def secret_box_test
  box = SecretBox.new(vector(:secret_key))
  box_common_test(box)
end

.sha256_testObject



93
94
95
96
97
98
99
100
101
102
# File 'lib/rbnacl/self_test.rb', line 93

def sha256_test
  message = vector :sha256_message
  digest  = vector :sha256_digest

  unless RbNaCl::Hash.sha256(message) == digest
    #:nocov:
    raise SelfTestFailure, "failed to generate a correct SHA256 digest"
    #:nocov:
  end
end

.vector(name) ⇒ Object



11
12
13
# File 'lib/rbnacl/self_test.rb', line 11

def vector(name)
  [TestVectors[name]].pack("H*")
end