Tool/DigestCommands.h

/*
    Copyright (C) 2016 Apple Inc. All Rights Reserved.
    See LICENSE.txt for this sample’s licensing information
    
    Abstract:
    Commands for SHA and other digests.
 */
 
#import "QToolCommand.h"
 
NS_ASSUME_NONNULL_BEGIN
 
/*! Implements the `digest` command.
 */
 
@interface DigestCommand : QToolCommand
 
@end
 
/*! Implements the `hmac` command.
 */
 
@interface HMACCommand : QToolCommand
 
@end
 
NS_ASSUME_NONNULL_END