MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / DSS

Class DSS

extra/yassl/include/crypto_wrapper.hpp:327–340  ·  view source on GitHub ↗

Digitial Signature Standard scheme

Source from the content-addressed store, hash-verified

325
326// Digitial Signature Standard scheme
327class DSS : public Auth {
328public:
329 void sign(byte*, const byte*, unsigned int, const RandomPool&);
330 bool verify(const byte*, unsigned int, const byte*, unsigned int);
331 uint get_signatureLength() const;
332 DSS(const byte*, unsigned int, bool publicKey = true);
333 ~DSS();
334private:
335 struct DSSImpl;
336 DSSImpl* pimpl_;
337
338 DSS(const DSS&);
339 DSS& operator=(const DSS&);
340};
341
342
343// RSA Authentication and exchange

Callers 1

buildMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected