Actions
Task #2893
closedSimplify CommandOptions with SigningInfo
Start date:
Due date:
% Done:
100%
Estimated time:
1.50 h
Description
Replace signing options in ndn::nfd::CommandOptions
with ndn::security::SigningInfo
.
On CommandOptions
type, provide getter/setter for SigningInfo
, and mark old APIs as DEPRECATED
.
Updated by Junxiao Shi over 9 years ago
- Blocked by Feature #2871: KeyChain: general signing API added
Updated by Junxiao Shi over 9 years ago
- Has duplicate Task #2921: Make use of security::SigningInfo in nfd::CommandOptions added
Updated by Junxiao Shi over 9 years ago
- Status changed from New to In Progress
- % Done changed from 0 to 20
Additions:
partial class CommandOptions
{
public:
const SigningInfo&
getSigningInfo() const;
CommandOptions&
setSigningInfo(const SigningInfo& signingInfo);
private:
SigningInfo m_signingInfo;
};
Deprecated:
SigningParamsKind
getSigningParamsKind
getSigningIdentity
getSigningCertificate
setSigningDefault
setSigningIdentity
setSigningCertificate
Removed:
m_signingParamsKind
m_identity
Updated by Junxiao Shi over 9 years ago
- Blocks Task #2932: Face: simplify prefix registration APIs with SigningInfo added
Updated by Junxiao Shi over 9 years ago
- % Done changed from 20 to 70
http://gerrit.named-data.net/2149
NFD is using a deprecated method, and needs to be fixed in this issue.
https://travis-ci.org/yoursunny/ndn-cxx-breaks/builds/68030385
Updated by Alex Afanasyev over 9 years ago
Updated by Junxiao Shi over 9 years ago
- Status changed from In Progress to Closed
- % Done changed from 70 to 100
Updated by Junxiao Shi over 9 years ago
- Description updated (diff)
- Status changed from Closed to Resolved
- % Done changed from 100 to 80
Updated by Junxiao Shi over 9 years ago
- Blocks Task #2890: Delete deprecated KeyChain methods added
Updated by Junxiao Shi over 9 years ago
During 20150629 conference call, Alex approves putting DEPRECATED.
Updated by Junxiao Shi over 9 years ago
- Status changed from Resolved to In Progress
Updated by Junxiao Shi over 9 years ago
- Status changed from In Progress to Code review
- % Done changed from 80 to 100
Updated by Junxiao Shi over 9 years ago
- Status changed from Code review to Closed
Actions