SecurityTokenParameters.RequireDerivedKeys Propriedade
Definição
Obtém ou define um valor que indica se chaves podem ser derivadas das chaves de prova originais.Gets or sets a value that indicates whether keys can be derived from the original proof keys.
public:
property bool RequireDerivedKeys { bool get(); void set(bool value); };
public bool RequireDerivedKeys { get; set; }
member this.RequireDerivedKeys : bool with get, set
Public Property RequireDerivedKeys As Boolean
Valor da propriedade
true se as chaves precisam ser derivadas da chave do token; caso contrário, false.true if keys need to be derived from the token's key; otherwise, false. O padrão é true.The default is true.
Comentários
O WCF precisa derivar chaves da chave do token ao executar a assinatura e a criptografia usando o token.WCF needs to derive keys from the token's key when performing signature and encryption using the token.
As chaves derivadas originam-se em conversas seguras em que há um contexto de segurança compartilhado para que a mesma segurança possa ser aplicada em todas as mensagens na conversa.Derived keys originate in Secure Conversations where there is a shared security context so that the same security can be applied across all messages in the conversation. Um token de contexto de segurança envolve um segredo compartilhado, que é usado para assinatura e criptografia de mensagens.A security context token involves a shared secret, which is used for message signing and encryption. O segredo compartilhado é usado para criar chaves derivadas.The shared secret is used to create derived keys. Para manter um alto nível de segurança por meio de uma conversa demorada, novas chaves derivadas podem ser criadas periodicamente.To maintain a high level of security through a lengthy conversation, new derived keys can be created periodically.