Skip to content

Commit 7de3589

Browse files
committed
add check that pkcs #1 v1.5 is greater then 8 bytes
1 parent ce7b1d1 commit 7de3589

File tree

3 files changed

+6
-15
lines changed

3 files changed

+6
-15
lines changed

docs/src/examples.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Random.seed!(42)
77
private_key, public_key = ToyPublicKeys.generate_rsa_key_pair(2048)
88
msg = "Super secret message!"
99
println(msg)
10-
encrypted = ToyPublicKeys.encrypt(msg, public_key; pad_length = 1)
10+
encrypted = ToyPublicKeys.encrypt(msg, public_key)
1111
println(encrypted)
1212
decrypted = ToyPublicKeys.decrypt(encrypted, private_key)
1313
println(decrypted)

src/padding/pkcs_1_v1_5.jl

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ end
2525
Core implementation of the [PKCS#1 v1.5 padding](https://www.rfc-editor.org/rfc/rfc2313#section-8.1).
2626
"""
2727
function pad(msg::AbstractVector{T}, pad_length=32) where {T<:Base.BitInteger}
28+
pad_length > 8 || throw(error("Will not create pad with length < 8"))
2829
buff = rand(T(1):T(typemax(T)), pad_length + 3)
2930
buff[1] = 0
3031
buff[2] = 2
@@ -39,6 +40,7 @@ end
3940
Wrapper for the core pad function.
4041
"""
4142
function pad(msg::T, pad_length=32) where {T<:AbstractString}
43+
pad_length > 8 || throw(error("Will not create pad with length < 8"))
4244
msg_cu = codeunits(msg)
4345
msg_padded = pad(msg_cu, pad_length)
4446
return T(msg_padded)

test/rsa.jl

+3-14
Original file line numberDiff line numberDiff line change
@@ -59,22 +59,11 @@ end
5959
@test msg == decrypted
6060
end
6161

62-
@testset "padding/pkcs_1_v1_5" begin
63-
test_vector = Vector{UInt8}([1,2,3])
64-
Random.seed!(42)
65-
padded_vector_correct = UInt8[0x00, 0x02, 0x7a, 0xb4, 0xac, 0x2b, 0x9d, 0xab, 0x75, 0x4d, 0xa9, 0xa4, 0x58, 0x45, 0x84, 0x17, 0x46, 0x31, 0x6d, 0x7c, 0x15, 0x84, 0x33, 0x9a, 0x66, 0x51, 0x6f, 0xdb, 0x52, 0x90, 0x53, 0x29, 0xb9, 0x5f, 0x00, 0x01, 0x02, 0x03]
66-
padded_vec = ToyPublicKeys.pad(test_vector)
67-
@test padded_vector_correct == padded_vec
68-
unpadded_vector = ToyPublicKeys.unpad(padded_vector_correct)
69-
@test test_vector == unpadded_vector
70-
@test UInt8[0x00, 0x02, 0x00, 0x01, 0x02, 0x03] == ToyPublicKeys.pad(test_vector, 0)
71-
end
72-
7362
@testset "Decryption(Encryption) is identity ~ CodeUnits" begin
7463
Random.seed!(42)
7564
private_key, public_key = ToyPublicKeys.generate_rsa_key_pair(2048)
7665
msg = Base.CodeUnits("1")
77-
encrypted = ToyPublicKeys.encrypt(msg, public_key; pad_length = 1)
66+
encrypted = ToyPublicKeys.encrypt(msg, public_key)
7867
decrypted = ToyPublicKeys.decrypt(encrypted, private_key)
7968
@test decrypted == msg
8069
end
@@ -83,7 +72,7 @@ end
8372
Random.seed!(42)
8473
private_key, public_key = ToyPublicKeys.generate_rsa_key_pair(2048)
8574
msg = "1"
86-
encrypted = ToyPublicKeys.encrypt(msg, public_key; pad_length = 1)
75+
encrypted = ToyPublicKeys.encrypt(msg, public_key)
8776
decrypted = ToyPublicKeys.decrypt(encrypted, private_key)
8877
@test decrypted == msg
8978
end
@@ -92,6 +81,6 @@ end
9281
Random.seed!(42)
9382
private_key, public_key = ToyPublicKeys.generate_rsa_key_pair(2048)
9483
msg = "1"
95-
signature = ToyPublicKeys.sign(msg, private_key; pad_length = 1)
84+
signature = ToyPublicKeys.sign(msg, private_key)
9685
@test ToyPublicKeys.verify_signature(msg, signature, public_key)
9786
end

0 commit comments

Comments
 (0)