mirror of
https://github.com/mii443/encrypt.git
synced 2025-08-22 15:05:33 +00:00
add PPE substract multiply
This commit is contained in:
@ -9,7 +9,8 @@ fn main() {
|
||||
println("d: " + d)
|
||||
let e = encrypt(24)
|
||||
println("e: " + e)
|
||||
let r = a + b + c + d + e
|
||||
let f = encrypt(15)
|
||||
let r = a + b + c + d + e - f
|
||||
println("r: " + decrypt(r));
|
||||
println(decrypt(r) - 15)
|
||||
println(decrypt(r * 2))
|
||||
}
|
||||
|
Reference in New Issue
Block a user