shaker ~master (2022-05-27T11:06:23.9081154)
Dub
Repo
SignKeyPair
sign
Undocumented in source.
class
SignKeyPair {
ubyte
[
32
]
public_key
;
ubyte
[
64
]
secret_key
;
this
();
this
(ubyte[32] pubk, ubyte[64] secretk);
SignedMessage
sign
(string data);
SignedMessage
sign
(ubyte[] data);
}
Constructors
this
this
()
Undocumented in source.
this
this
(ubyte[32] pubk, ubyte[64] secretk)
Undocumented in source.
Members
Functions
sign
SignedMessage
sign
(string data)
Undocumented in source. Be warned that the author may not have intended to support it.
sign
SignedMessage
sign
(ubyte[] data)
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
public_key
ubyte
[
32
]
public_key
;
Undocumented in source.
secret_key
ubyte
[
64
]
secret_key
;
Undocumented in source.
Meta
Source
See Implementation
sign
classes
SignKeyPair
functions
crypto_sign
crypto_sign_bytes
crypto_sign_keypair
crypto_sign_open
structs
SignedMessage