Fix Secret::Not
parent
3ddc481422
commit
5293281ca9
|
@ -0,0 +1 @@
|
||||||
|
require "./crypto-secret/crypto-secret.cr"
|
|
@ -6,15 +6,13 @@
|
||||||
struct Crypto::Secret::Not
|
struct Crypto::Secret::Not
|
||||||
include Crypto::Secret
|
include Crypto::Secret
|
||||||
|
|
||||||
def initialize(size)
|
def self.new(size)
|
||||||
@bytes = Bytes.new size
|
new Bytes.new(size)
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_slice : Bytes
|
def initialize(@bytes : Bytes)
|
||||||
@bytes
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
delegate_to_slice @bytes
|
delegate_to_slice @bytes
|
||||||
delegate_to_bytesize @bytes
|
delegate_to_bytesize @bytes
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue